home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / makefile
Makefile  |  1997-10-09  |  1KB  |  56 lines

  1. DIRS = \
  2.     adsi\~   \
  3.     dlc\~   \
  4.     MPR\~   \
  5.     msmq\~   \
  6.     RAS\~   \
  7.     RPC\~   \
  8.     RRas\~   \
  9.     SNA\~   \
  10.     snmp\~   \
  11.     TAPI\~   \
  12.     WinNT\~   \
  13.     WINSOCK\~   \
  14.  
  15.  
  16. SDKPROJ =NetDS
  17.  
  18.  
  19. #
  20. # This is a Platform SDK non-leaf-node makefile.  It is used to allow NMAKE, 
  21. #  or a similar tool, to recursively build all of the samples in a directory 
  22. #  tree.  To add or remove a directory from the build process, modify the 
  23. #  DIRS list above.  
  24. #
  25. # The SDKPROJ macro (above) is defined solely for the purpose of echoing
  26. #  the current directory location to the screen.  
  27. #
  28. # Do not modify this makefile except for the DIRS and SDKPROJ macros above.
  29. #
  30.  
  31. #
  32. # Include sdkpropbld.mak in order to get standard build options, environment
  33. #  variables, and macros.  The sdkpropbld.mak file is installed with the SDK 
  34. #  in the include directory.
  35.  
  36. !include <sdkpropbld.mak>
  37.  
  38. # In order to build "all," process each of the entries in the DIRS list.
  39. #
  40.  
  41. all: $(DIRS)
  42.  
  43.  
  44. #
  45. # In order to build each of the entries in the DIRS list, change dir into the
  46. #  directory in question, echo the current location, run nmake recursively, 
  47. #  and change dir back to the original directory level.  This four step process 
  48. #  is encapsulated in sdkbld.mak which is installed with the SDK in the include
  49. #  directory.
  50. #
  51.  
  52. $(DIRS):
  53. !include <sdkbld.mak>
  54.