home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
sdktools
/
winnt
/
remote
/
makefile
< prev
next >
Wrap
Makefile
|
1997-09-01
|
835b
|
38 lines
TARGETOS=WINNT
SEHMAP=TRUE
# RFLAGS is for Windows resources
RFLAGS= -fo$@ -DWIN32 -r -D_WIN32 -DWINVER=0x0400
!include <win32.mak>
all: remote.exe remoteds.exe
# Update the resources if necessary
remote.exe: remote.obj \
remote.res \
client.obj \
pipeex.obj \
srvad.obj \
srvchild.obj \
srvctos.obj \
srvhshak.obj \
srvlist.obj \
srvmain.obj \
srvquery.obj \
srvstoc.obj \
srvutil.obj
$(link) $(linkdebug) $(conflags) -out:$*.exe $** $(conlibsmt) advapi32.lib user32.lib
remoteds.exe: remoteds.obj \
remoteds.res
$(link) $(linkdebug) $(conflags) -out:$*.exe $** $(conlibsmt) advapi32.lib
.c.obj:
$(cc) $(cdebug) $(cflags) $(cvarsmt) $*.c
.rc.res:
$(RC) $(RFLAGS) $(@B).rc