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.
|
|
###########################################################
#
# File: Anvil Makefile
#
# Purpose:
# Builds Anvil subprojects.
#
###########################################################
######################################################
#
# Per-configuration options
#
######################################################
!MESSAGE ******************** Building Anvil ******************** SUBPROJECTS = Core LogDevices Objects
######################################################
#
# Targets
#
######################################################
all : subprojects
subprojects : Utility\subproj $(SUBPROJECTS)
#
# Clean wrapper target
# (We wrap this because nmake ordinarily doesn't like
# to see non-zero return codes from commands.)
#
clean : subclean nmake /nologo /i /f Anvil.mak actualclean
#
# Clean subprojects target
#
subclean : Utility\subproj -clean $(SUBPROJECTS) Utility\subproj -clean $(ANVIL_SUBPROJECTS)
#
# Actual clean target
# (May include commands whose return values are non-0.)
#
actualclean :
|