Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.3 KiB

  1. DIRS = \
  2. CreateCert\~ \
  3. Encode\~ \
  4. Exit\~ \
  5. Policy\~ \
  6. PolicyVB\~ \
  7. RequestCert\~ \
  8. SDKPROJ=WinBase\Security\CertSvr
  9. #
  10. # This is a Platform SDK branch node makefile. It is used to allow NMAKE,
  11. # or a similar tool, to recursively build all of the samples in a directory
  12. # tree. To add or remove a directory from the build process, modify the
  13. # DIRS list above.
  14. #
  15. # The SDKPROJ macro (above) is defined solely for the purpose of echoing
  16. # the current directory location to the screen.
  17. #
  18. # Do not modify this makefile except for the DIRS and SDKPROJ macros above.
  19. #
  20. #
  21. # Include SDKPropBld.Mak in order to get standard build options, environment
  22. # variables, and macros. The SDKPropBld.Mak file is installed with the SDK
  23. # in the Include directory.
  24. #
  25. !Include <SDKPropBld.Mak>
  26. #
  27. # In order to build "all," process each of the entries in the DIRS list.
  28. #
  29. all: $(DIRS)
  30. #
  31. # In order to build each of the entries in the DIRS list, change dir into the
  32. # directory in question, echo the current location, run nmake recursively,
  33. # and change dir back to the original directory level. This four step process
  34. # is encapsulated in SDKBld.Mak which is installed with the SDK in the Include
  35. # directory.
  36. #
  37. $(DIRS):
  38. !Include <SDKBld.Mak>