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

  1. DIRS = \
  2.     aclapi\~   \
  3.     audit\~   \
  4.     check_sd\~   \
  5.     disptrus\~   \
  6.     domtrust\~   \
  7.     gina\~   \
  8.     ginastub\~   \
  9.     httpauth\~   \
  10.     Include\~   \
  11.     lsaprivs\~   \
  12.     lsasamp\~   \
  13.     machacct\~   \
  14.     rcmd\~   \
  15.     SampSSP\~   \
  16.     sd_flppy\~   \
  17.     secfile\~   \
  18.     secperf\~   \
  19.     sidcln\~   \
  20.     SockAuth\~   \
  21.     subauth\~   \
  22.     takeown\~   \
  23.     textsid\~   \
  24.  
  25.  
  26. SDKPROJ =WinBase\Security\WinNT
  27.  
  28.  
  29. #
  30. # This is a Platform SDK non-leaf-node makefile.  It is used to allow NMAKE, 
  31. #  or a similar tool, to recursively build all of the samples in a directory 
  32. #  tree.  To add or remove a directory from the build process, modify the 
  33. #  DIRS list above.  
  34. #
  35. # The SDKPROJ macro (above) is defined solely for the purpose of echoing
  36. #  the current directory location to the screen.  
  37. #
  38. # Do not modify this makefile except for the DIRS and SDKPROJ macros above.
  39. #
  40.  
  41. #
  42. # Include sdkpropbld.mak in order to get standard build options, environment
  43. #  variables, and macros.  The sdkpropbld.mak file is installed with the SDK 
  44. #  in the include directory.
  45.  
  46. !include <sdkpropbld.mak>
  47.  
  48. # In order to build "all," process each of the entries in the DIRS list.
  49. #
  50.  
  51. all: $(DIRS)
  52.  
  53.  
  54. #
  55. # In order to build each of the entries in the DIRS list, change dir into the
  56. #  directory in question, echo the current location, run nmake recursively, 
  57. #  and change dir back to the original directory level.  This four step process 
  58. #  is encapsulated in sdkbld.mak which is installed with the SDK in the include
  59. #  directory.
  60. #
  61.  
  62. $(DIRS):
  63. !include <sdkbld.mak>
  64.