home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
sysmgmt
/
sms
/
smsapi
/
makefile
next >
Wrap
Makefile
|
1997-10-13
|
1KB
|
56 lines
DIRS = \
Attribut\~ \
Browser\~ \
DelJob\~ \
EnumObj\~ \
MGrp\~ \
NewJob\~ \
NewPkg\~ \
Pdf\~ \
ResDll\~ \
SrvInst\~ \
TestAll\~ \
Tree\~ \
SDKPROJ =SysMgmt\SMS
#
# This is a Platform Sdk non-leaf-node makefile. It is used to allow NMAKE,
# or a similar tool, to recursively build all of the samples in a directory
# tree. To add or remove a directory from the build process, modify the
# DIRS list above.
#
# The SDKPROJ macro (above) is defined solely for the purpose of echoing
# the current directory location to the screen.
#
# Do not modify this makefile except for the DIRS and SDKPROJ macros above.
#
#
# Include SdkPropBld.Mak in order to get standard build options, environment
# variables, and macros. The SdkPropBld.Mak file is installed with the Sdk
# in the include directory.
#
!include <SdkPropBld.Mak>
#
# In order to build "all," process each of the entries in the DIRS list.
#
all: $(DIRS)
#
# In order to build each of the entries in the DIRS list, change dir into the
# directory in question, echo the current location, run nmake recursively,
# and change dir back to the original directory level. This four step process
# is encapsulated in SdkBld.Mak which is installed with the Sdk in the include
# directory.
#
$(DIRS):
!include <SdkBld.Mak>