67 lines
2.2 KiB
Plaintext
67 lines
2.2 KiB
Plaintext
|
###############################################################################
|
||
|
#
|
||
|
# WINNT/Make.gci - GCI makefile, Windows NT version
|
||
|
#
|
||
|
# Module %M% Version %I% Date %H%
|
||
|
#
|
||
|
# (c) Copyright 1998 Ardent Software Inc. - All Rights Reserved
|
||
|
# This is unpublished proprietary source code of Ardent Software Inc.
|
||
|
# The copyright notice above does not evidence any actual or intended
|
||
|
# publication of such source code.
|
||
|
#
|
||
|
###############################################################################
|
||
|
#
|
||
|
# Maintenance log - insert most recent change descriptions at top
|
||
|
#
|
||
|
# Date.... GTAR# WHO Description.........................................
|
||
|
# 10/14/98 23801 SAP Change copyrights.
|
||
|
# 29/03/96 18026 PGW Module created.
|
||
|
#
|
||
|
###############################################################################
|
||
|
|
||
|
!include <win32.mak>
|
||
|
|
||
|
CFLAGS = -Iinclude -DNETwork=2 -DRAID -DNDEBUG -DNOTUVDLL \
|
||
|
$(cdebug) $(cflags) $(cvarsdll)
|
||
|
|
||
|
#########################################################################
|
||
|
# #
|
||
|
# Change the following macro to include the names of all #
|
||
|
# object modules you wish to include as a part of uniVerse. #
|
||
|
# #
|
||
|
#########################################################################
|
||
|
GCILIB =
|
||
|
|
||
|
#########################################################################
|
||
|
# #
|
||
|
# Change the following macro to define the name of the GCI #
|
||
|
# definition file. # #
|
||
|
# #
|
||
|
#########################################################################
|
||
|
GCIFILE =
|
||
|
|
||
|
#########################################################################
|
||
|
# #
|
||
|
# Change the following macro to define the name of the GCI #
|
||
|
# library, that is the GCI definition file name converted to #
|
||
|
# lower case. #
|
||
|
# #
|
||
|
#########################################################################
|
||
|
GCIDLL =
|
||
|
|
||
|
###############################################################################
|
||
|
.c.obj:
|
||
|
$(CC) $(CFLAGS) -c $<
|
||
|
|
||
|
.c.lib:
|
||
|
$(CC) $(CFLAGS) -c $*.c
|
||
|
LIB /OUT:$*.lib $*.obj
|
||
|
|
||
|
$(GCIDLL).dll: $(GCIDLL).obj lib\universe.lib $(GCILIB)
|
||
|
$(link) $(LDEBUG) $(dlllflags) \
|
||
|
$(guilibsdll) lib\universe.lib $(GCILIB) \
|
||
|
/DLL /EXPORT:InitGCI /EXPORT:CallGCI /OUT:$(GCIDLL).dll \
|
||
|
$(GCIDLL).obj
|
||
|
|
||
|
|