home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
netds
/
winsock
/
rnr
/
rnrsetup
/
makefile
next >
Wrap
Makefile
|
1997-10-15
|
464b
|
24 lines
# Nmake macros for building Windows 32-Bit apps
APPVER=4.0
!include <win32.mak>
!if "$(CPU)" == "i386"
cflags = $(cflags) -D_CRTAPI1=_cdecl -D_CRTAPI2=_cdecl
!else
cflags = $(cflags) -D_CRTAPI1= -D_CRTAPI2=
!endif
objs=rnrsetup.obj
all: rnrsetup.exe
.c.obj:
$(cc) $(cdebug) $(cflags) $(cvars) $*.c
rnrsetup.exe: rnrsetup.obj
$(link) $(linkdebug) $(conflags) -out:rnrsetup.exe rnrsetup.obj ws2_32.lib mswsock.lib $(conlibs)