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

  1. DIRS = \
  2.        Attribut\~ \
  3.        Browser\~  \
  4.        DelJob\~   \
  5.        EnumObj\~  \
  6.        MGrp\~     \
  7.        NewJob\~   \
  8.        NewPkg\~   \
  9.        Pdf\~      \
  10.        ResDll\~   \
  11.        SrvInst\~  \
  12.        TestAll\~  \
  13.        Tree\~     \
  14.  
  15.  
  16. SDKPROJ =SysMgmt\SMS
  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.