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.

45 lines
1.2 KiB

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