📄 sdkbld.mak
字号:
#
# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -