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 / data / inout / makefile < prev    next >
Makefile  |  1997-10-15  |  2KB  |  68 lines

  1. #*************************************************************#
  2. #**                                                         **#
  3. #**                 Microsoft RPC Examples                  **#
  4. #**                   inout 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 : inoutc inouts
  18.  
  19. # Make the inout client
  20. inoutc : inoutc.exe
  21. inoutc.exe : inoutc.obj inout_c.obj
  22.     $(link) $(linkdebug) $(conflags) -out:inoutc.exe \
  23.       inoutc.obj inout_c.obj \
  24.       rpcrt4.lib $(conlibsdll)
  25.  
  26. # inout client main program
  27. inoutc.obj : inoutc.c inout.h
  28.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  29.  
  30. # inout client stub
  31. inout_c.obj : inout_c.c inout.h
  32.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  33.  
  34. # Make the inout server
  35. inouts : inouts.exe
  36. inouts.exe : inouts.obj inoutp.obj inout_s.obj
  37.     $(link) $(linkdebug) $(conflags) -out:inouts.exe \
  38.       inouts.obj inout_s.obj inoutp.obj \
  39.       rpcrt4.lib $(conlibsdll)
  40.  
  41. # inout server main loop
  42. inouts.obj : inouts.c inout.h
  43.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  44.  
  45. # remote procedures
  46. inoutp.obj : inoutp.c inout.h
  47.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  48.  
  49. # inout server stub file
  50. inout_s.obj : inout_s.c inout.h
  51.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  52.  
  53. # Stubs and header file from the IDL file
  54. inout.h inout_c.c inout_s.c : inout.idl inout.acf
  55.     midl -oldnames -no_cpp inout.idl
  56.  
  57. # Clean up everything
  58. cleanall : clean
  59.     -del *.exe
  60.  
  61. # Clean up everything but the .EXEs
  62. clean :
  63.     -del *.obj
  64.     -del *.map
  65.     -del inout_c.c
  66.     -del inout_s.c
  67.     -del inout.h
  68.