master.mif
来自「开放源码的编译器open watcom 1.6.0版的源代码」· MIF 代码 · 共 23 行
MIF
23 行
proj_name = vi
name = vi
!include cproj.mif
!include defrule.mif
!include deftarg.mif
# This makefile is to build internal utils, only used for the build process itself.
# Therefore it should run only if the OS you are running it on equals the intended
# host. E.g. if we are building on OS/2 we don't need to build utils for NT or DOS,
# even if we are building 'all'. We do need a 'clean' target, though .
all: parsectl.exe parsedyn.exe
.c: ..
parsectl.exe : parsectl.obj
$(linker) $(lflags) name $^@ op map file { $< }
parsedyn.exe : parsedyn.obj
$(linker) $(lflags) name $^@ op map file { $< }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?