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 >
Makefile  |  1997-09-01  |  835b  |  38 lines

  1. TARGETOS=WINNT
  2. SEHMAP=TRUE
  3.  
  4. # RFLAGS is for Windows resources
  5. RFLAGS= -fo$@ -DWIN32 -r -D_WIN32 -DWINVER=0x0400
  6.  
  7.  
  8. !include <win32.mak>
  9.  
  10. all: remote.exe remoteds.exe
  11.  
  12. # Update the resources if necessary
  13.  
  14. remote.exe: remote.obj  \
  15.         remote.res \
  16.         client.obj  \
  17.         pipeex.obj \
  18.         srvad.obj \
  19.         srvchild.obj \
  20.         srvctos.obj \
  21.         srvhshak.obj \
  22.         srvlist.obj \
  23.         srvmain.obj \
  24.         srvquery.obj \
  25.         srvstoc.obj \
  26.         srvutil.obj
  27.   $(link) $(linkdebug) $(conflags) -out:$*.exe $** $(conlibsmt) advapi32.lib user32.lib
  28.  
  29. remoteds.exe: remoteds.obj \
  30.         remoteds.res
  31.   $(link) $(linkdebug) $(conflags) -out:$*.exe $** $(conlibsmt) advapi32.lib
  32.  
  33. .c.obj:
  34.   $(cc) $(cdebug) $(cflags) $(cvarsmt) $*.c
  35.  
  36. .rc.res:
  37.     $(RC) $(RFLAGS) $(@B).rc
  38.