📄 testi.mif
字号:
.CONTINUE
.IGNORE
!ifndef testcomp
testcomp=wcc386
!endif
!ifdef nulldevice
!else ifdef __UNIX__
nulldevice=/dev/null
!else
nulldevice=nul
!endif
!ifndef log_file
log_file=testcomp.log
!endif
.BEFORE
# @%create $(log_file)
all : clean $(objs) $(dev_objs) .SYMBOLIC
!ifneq objs
$(objs) : .SYMBOLIC
@echo ==============================================================
@echo $(testcomp) $^@.asm
@echo ==============================================================
@%append $(log_file) === $(testcomp) $^@ ===
@$(testcomp) $@.c -s -os -zq -fo=.obj $(c_flags_$^@) >$(nulldevice)
@wmake -h -f ../check.mif name=$@ log_file=$(log_file) fix_wdis_lst=1
!endif
!ifneq dev_objs
$(dev_objs) : .SYMBOLIC
@echo .
@echo ==============================================================
@echo DEVELOPMENT - $(testcomp) $^@.asm
@echo ==============================================================
@%append $(log_file) === $(testcomp) $^@ ===
@$(testcomp) $@.c -s -os -zq -fo=.obj $(c_flags_$^@) >$(nulldevice)
@wmake -h -f ../check.mif name=$@ log_file=$(log_file) fix_wdis_lst=1
@echo .
!endif
clean : .SYMBOLIC
@rm -f *.obj *.err *.dis *.lst *.tmp mem.trk
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -