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

📄 bootmake

📁 开放源码的编译器open watcom 1.6.0版的源代码
💻
字号:
#pmake: bootstrap 
#
# Create the Linux std.trp
#
host_os  = $(%BOOTSTRAP_OS)
host_cpu = $(%BOOTSTRAP_CPU)

bootstrap         = 1
substitute_linker = 1

os      = linux
srv     = lcl
which   = TRAP

extra_objs = &
        linuxacc.obj &
        linuxmap.obj &
        linuxcomm.obj &
        linuxfile.obj &
	linuxutl.obj &
        supp.obj &
        core.obj

!ifeq host_cpu 386
cpu     = x86
extra_objs += linuxx86.obj x86cpu.obj #misc7386.obj
!else ifeq host_cpu ppc
cpu     = ppc
extra_objs += linuxppc.obj
!else ifeq host_cpu mips
cpu     = mips
extra_objs += linuxmips.obj
!else
!error Unknown CPU architecture
!endif

extra_c_flags = -fPIC

!include $(trap_dir)/lcl/lcl.mif
!include $(trap_dir)/master.mif

$(target) : $(objs) $(extra_libs) $(resource_file) $(extra_deps) $(__MAKEFILES__) $(nversion_tmp)
        $(cl) -shared $(clflags) $(objs) $(extra_libs) $(cl_libs)

⌨️ 快捷键说明

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