makefile

来自「Dos6.0」· 代码 · 共 23 行

TXT
23
字号
#******************** makefile for boot *****************************

msg	=..\messages
inc	=..\inc
extasw  =-I$(inc)

#
#################### dependencies begin here ############################
#

all: msboot.bin

boot.cl1:     boot.skl                  \
              $(msg)\$(COUNTRY).MSG     \
              makefile

msboot.obj:   msboot.asm boot.cl1 $(inc)\version.inc $(inc)\dirent.inc

msboot.bin:   msboot.obj
              link msboot;
              reloc msboot.exe msboot.bin
              dbof msboot.bin boot.inc 7c00 200

⌨️ 快捷键说明

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