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.dos < prev    next >
Makefile  |  1995-11-14  |  1KB  |  46 lines

  1. #*************************************************************#
  2. #**                                                         **#
  3. #**                 Microsoft RPC Examples                  **#
  4. #**                   inout Application                     **#
  5. #**         Copyright(c) Microsoft Corp. 1992-1995          **#
  6. #**                                                         **#
  7. #*************************************************************#
  8.  
  9. cc= cl
  10. cflags= -c -AL -Gsw -Oas -Zpe -Zi -D_CRTAPI1=
  11. linker= link
  12. lflags= /CO /NOD
  13.  
  14. .c.obj:
  15.    $(cc) $(cflags) $<
  16.  
  17. all : inoutc
  18.  
  19. idl : inout.h
  20.  
  21. # Make the client side application inoutc
  22. inoutc : inoutc.exe
  23. inoutc.exe : inoutc.obj inout_c.obj
  24.     $(linker) $(lflags) inoutc inout_c ,,,\
  25.     llibce rpc rpcndr;
  26.  
  27. # Update the object files if necessary
  28.  
  29. inoutc.obj : inoutc.c inout.h
  30.  
  31. inout_c.obj : inout_c.c inout.h
  32.  
  33. inout.h inout_c.c : inout.idl inout.acf
  34.     midl -env dos -oldnames -no_cpp inout.idl
  35.  
  36. # Clean up everything
  37. cleanall : clean
  38.     -del inoutc.exe
  39.  
  40. # Clean up everything but the .EXEs
  41. clean :
  42.     -del *.obj
  43.     -del *.map
  44.     -del inout_c.c
  45.     -del inout.h
  46.