home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / dcom / simple / makefile < prev    next >
Makefile  |  1997-08-06  |  815b  |  39 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. TARGETOS=WINNT
  4. APPVER=4.0
  5.  
  6. all:sclient.exe sserver.exe
  7.  
  8. !include <win32.mak>
  9.  
  10. cflags=$(cflags) -Gz /YX
  11.  
  12. #
  13. # Simple Client
  14. #
  15.  
  16. sclient.obj: sclient.cpp
  17.     $(cc) $(cflags) $(cvarsmt) $(cdebug) -Fdsclient.pdb sclient.cpp -DUNICODE=1 -D_UNICODE=1 -DUNICODE=1
  18.  
  19. sclient.exe: sclient.obj
  20.     $(link) -debug:full -debugtype:cv -pdb:sclient.pdb -out:sclient.exe sclient.obj $(olelibs) msvcrt.lib -subsystem:console
  21.  
  22. #
  23. # Simple Server
  24. #
  25.  
  26. sserver.obj: sserver.cpp
  27.     $(cc) $(cflags) $(cvarsmt) $(cdebug) -Fdserver.pdb sserver.cpp -DUNICODE=1 -D_UNICODE=1
  28.  
  29. sserver.exe: sserver.obj
  30.     $(link) -debug -out:sserver.exe sserver.obj $(olelibs) -subsystem:console
  31.  
  32. clean:
  33.     del *.exe
  34.     del *.obj
  35.     del *.pdb
  36.     del *.ilk
  37.     del *.pch
  38.  
  39.