📄 tools.ini
字号:
[nmake]
#############################################################################
# #
# These are the built in rules and path definitions used by the new MS Make #
# Utility (NMAKE). The following variables are set externaly (ie set in the #
# individual makefiles. #
# #
# extasw = The 'extra assembly switch' variable is optionaly used in the #
# makefile to specify special MASM command line switches. #
# #
# extcsw = The 'extra C switch' variable is optionaly used in the makefile #
# to specify special C compiler command line switches. #
# #
# inc = The include file search path from the utility being built to the #
# INC directory. Used if needed. #
# #
# hinc = The include file search path from the utility being built to the #
# H directory. Used if needed for C source compilation. #
# #
#############################################################################
########## Definitions for the Assembler #####
########## awarn can be overridden by placing #####
########## the new warning level in extasw #####
########## in the makefile #####
asm =masm
awarn =-W2
aflags =-Mx -t $(awarn) $(extasw)
ainc =-I.
########## Definitions for C compiler #####
########## cwarn can be overridden by placing #####
########## the new warning level in extcsw #####
########## in the makefile #####
cc =cl
cwarn =-W3
cflags =-Os -Zp $(cwarn) $(extcsw)
cinc =-I.
########## Definitions for linker ##########
link =link
exelink =/E
########## Definitions for compress ##########
compress =compress
########## Built-in rules ##########
.SUFFIXES:
.SUFFIXES: .c .obj .lst .exe .exc .exs .com .sal .cod .sil .inc .skl .cla .cl1 .ctl .asm .idx .msg
.sal.asm:
salut $*.sal,nul,$*.asm
.asm.obj:
$(asm) $(ainc) $(aflags) $*.asm;
.asm.lst:
$(asm) -l $(ainc) $(aflags) $*.asm;
.c.obj:
$(cc) -c $(cinc) $(cflags) $*.c
.c.lst:
$(cc) -c $(cinc) $(cflags) -fc$*.cod -fo$*.obj $*.c
.exs.sys:
copy $*.exs $*.exe
reloc $* $*.sys
del $*.exe
.exc.com:
copy $*.exc $*.exe
reloc $* $*.com
del $*.exe
.exe.com:
convert $*.exe
.skl.cl1:
nosrv $(msg)\$(COUNTRY) $*
.sil.inc:
salut $*.sil,nul,$*.inc
.sal.obj:
salut $*.sal,nul,$*.asm
$(asm) $(aflags) $(ainc) $*.asm,$*.obj;
.msg.idx:
chmode -r $*.msg
buildidx $*.msg
chmode +r $*.msg
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -