makefile
来自「开放源码的编译器open watcom 1.6.0版的源代码」· 代码 · 共 27 行
TXT
27 行
all : test01.bin test02.com
# Note: This one can't be converted to a valid .com executable
test01.bin : test01.exe
exe2bin -q -x -l=0 $< $@
test01.exe : test01.obj
wlink op quiet format dos com file $< name $@
test01.obj : test01.asm
wasm -zq -wx $<
test02.com : test02.exe
exe2bin -q $< $@
test02.exe : test02.obj
wlink op quiet format dos com file $< name $@
test02.obj : test02.asm
wasm -zq -wx $<
clean : .symbolic
@rm -f *.obj
@rm -f *.exe
@rm -f *.com
@rm -f *.bin
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?