⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 开放源码的编译器open watcom 1.6.0版的源代码
💻
字号:
#pmake: build remote support nmp os_os2 cpu_i86 cpu_386

host_os  = os2
host_cpu = i86

proj_name = nmpbind

!ifndef nmpbind_autodepends
nmpbind_autodepends = .AUTODEPEND
!endif

!include cproj.mif
!include deftarg.mif
!include defrule.mif

objs = nmpbind.obj nmpos2.obj

extra_c_flags = -bm -zu
extra_l_flags = op stack=8k

!ifeq release 0
default_targ    = d
!else
default_targ    = w
!endif

first : $(default_targ) .SYMBOLIC
        @%null

w : nmpbind.exe .SYMBOLIC
        @%null

d : dnmpbind.exe .SYMBOLIC
        @%null

nmpbind.exe : _err.gh _jerr.gh $(objs)
    $(linker) $(lflags) file {$objs} name $^@

dnmpbind.exe : _err.gh _jerr.gh $(objs)
    $(linker) $(lflags) file {$objs} name $^@

.c: ../c

inc_dirs = -I"$(trap_dir)/h"

_err.gh : ./mkstr.exe
        $[@ $^@

_jerr.gh : ./jmkstr.exe
        $[@ $^@

./mkstr.exe : $(trap_dir)/c/mkstr.c $(trap_dir)/h/trap.msg
        $(bld_cl) $[@ $(wcl_util_opts) -I"$(trap_dir)/h"

./jmkstr.exe: $(trap_dir)/c/mkstr.c $(trap_dir)/h/trap.msg
        $(bld_cl) $[@ $(wcl_util_opts) -DJAPANESE_MESSAGES -I"$(trap_dir)/h"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -