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

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