sdkbld.mak

来自「c语言编程软件vc6.0中文绿色版_vc6.0官方下载」· MAK 代码 · 共 29 行

MAK
29
字号
#
# Include sdkbld.mak to build each of the entries in a list.
#  The steps are to change dir into the directory, 
#  echo the current location, run nmake recursively, 
#  and change dir back to the original directory level.  
#
# MAKEFLAGS is an NMAKE macro that has the NMAKE options.
#
# makeopts has the command line, see sdkpropbldk.mak to change the standard options
#
# The SDKPROJ macro (above) is defined solely for the purpose of echoing
#  the current directory location to the screen.  It is defined recursively 
#  by appending the current directory name onto the end of the existing
#  string.
#
#  Note, there must not be a space between the last comment and the
#   "@IF EXIST $(@D)\makefile <<nmaketmp.bat" line below.
#
	@IF EXIST $(@D)\makefile <<nmaketmp.bat
	@cd $(@D)
	@echo *** $(SDKPROJ)\$(@D) *** $(MAKE) -nologo $(makeopts) /$(MAKEFLAGS)
	@$(MAKE) -nologo /$(MAKEFLAGS) $(makeopts)
	@cd ..
<<	

#
# End sdkbld.make
#

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?