home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / rpc / hello / makefile < prev    next >
Makefile  |  1997-10-15  |  2KB  |  69 lines

  1. #*************************************************************#
  2. #**                                                         **#
  3. #**                 Microsoft RPC Examples                  **#
  4. #**                   hello Application                     **#
  5. #**         Copyright(c) Microsoft Corp. 1992-1996          **#
  6. #**                                                         **#
  7. #*************************************************************#
  8.  
  9. !include <ntwin32.mak>
  10.  
  11. !if "$(CPU)" == "i386"
  12. cflags = $(cflags) -D_CRTAPI1=_cdecl -D_CRTAPI2=_cdecl
  13. !else
  14. cflags = $(cflags) -D_CRTAPI1= -D_CRTAPI2=
  15. !endif
  16.  
  17. all : helloc hellos
  18.  
  19. # Make the client side application helloc
  20. helloc : helloc.exe
  21. helloc.exe : helloc.obj hello_c.obj
  22.     $(link) $(linkdebug) $(conflags) -out:helloc.exe \
  23.       helloc.obj hello_c.obj \
  24.       rpcrt4.lib $(conlibsdll)
  25.  
  26. # helloc main program
  27. helloc.obj : helloc.c hello.h
  28.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  29.  
  30. # helloc stub
  31. hello_c.obj : hello_c.c hello.h
  32.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  33.  
  34. # Make the server side application
  35. hellos : hellos.exe
  36. hellos.exe : hellos.obj hellop.obj hello_s.obj
  37.     $(link) $(linkdebug) $(conflags) -out:hellos.exe \
  38.       hellos.obj hello_s.obj hellop.obj \
  39.       rpcrt4.lib $(conlibsdll)
  40.  
  41. # hello server main program
  42. hellos.obj : hellos.c hello.h
  43.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  44.  
  45. # remote procedures
  46. hellop.obj : hellop.c hello.h
  47.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  48.  
  49. # hellos stub file
  50. hello_s.obj : hello_s.c hello.h
  51.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  52.  
  53.  
  54. # Stubs and header file from the IDL file
  55. hello.h hello_c.c hello_s.c : hello.idl hello.acf
  56.     midl -oldnames -cpp_cmd $(cc) -cpp_opt "-E" hello.idl
  57.  
  58. # Clean up everything
  59. cleanall : clean
  60.     -del *.exe
  61.  
  62. # Clean up everything but the .EXEs
  63. clean :
  64.     -del *.obj
  65.     -del *.map
  66.     -del hello_c.c
  67.     -del hello_s.c
  68.     -del hello.h
  69.