home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / rpc / makefile next >
Makefile  |  1997-10-12  |  2KB  |  63 lines

  1. DIRS =       callback\~        \
  2.                         cluuid\~          \
  3.                         data\~            \
  4.                         dict\~            \
  5.                         doctor\~          \
  6.                         dynept\~          \
  7.                         dynout\~          \
  8.                         handles\~         \
  9.                         hello\~           \
  10.                         interop\~     \
  11.                         mandel\~          \
  12.                         ns\~                      \
  13.                         object\~          \
  14.                         pickle\~          \
  15.                         pipes\~           \
  16.                         rpcssm\~          \
  17.                         rpcsvc\~          \
  18.                         strout\~          \
  19.                         wintyp\~          \
  20.                         whello\~          \
  21.                         yield\~
  22.  
  23. SDKPROJ =NetDS\RPC
  24.  
  25.  
  26. #
  27. # This is a Platform SDK non-leaf-node makefile.  It is used to allow NMAKE, 
  28. #  or a similar tool, to recursively build all of the samples in a directory 
  29. #  tree.  To add or remove a directory from the build process, modify the 
  30. #  DIRS list above.  
  31. #
  32. # The SDKPROJ macro (above) is defined solely for the purpose of echoing
  33. #  the current directory location to the screen.  
  34. #
  35. # Do not modify this makefile except for the DIRS and SDKPROJ macros above.
  36. #
  37.  
  38. #
  39. # Include sdkpropbld.mak in order to get standard build options, environment
  40. #  variables, and macros.  The sdkpropbld.mak file is installed with the SDK 
  41. #  in the include directory.
  42.  
  43. !include <sdkpropbld.mak>
  44.  
  45. # In order to build "all," process each of the entries in the DIRS list.
  46. #
  47.  
  48. all: $(DIRS)
  49.  
  50.  
  51. #
  52. # In order to build each of the entries in the DIRS list, change dir into the
  53. #  directory in question, echo the current location, run nmake recursively, 
  54. #  and change dir back to the original directory level.  This four step process 
  55. #  is encapsulated in sdkbld.mak which is installed with the SDK in the include
  56. #  directory.
  57. #
  58.  
  59. $(DIRS):
  60. !include <sdkbld.mak>
  61.