makefile
来自「Dos6.0」· 代码 · 共 44 行
TXT
44 行
#*************************** Makefile for DOS ***************************
bins =..\..\binaries
cprs =..\..\compress
#
####################### dependencies begin here. #########################
#
!IFNDEF BUILDER
all:
!ELSE
all: $(bins)\country.ice $(cprs)\country.ic_ \
$(bins)\ega.ice $(cprs)\ega.ic_ \
$(bins)\keyboard.ice $(cprs)\keyboard.ic_ \
$(bins)\country.ice: country.ice
copy country.ice $(bins)
$(cprs)\country.ic_: country.ice
compress -f country.ice $(cprs)
$(bins)\ega.ice: ega.ice
copy ega.ice $(bins)
$(cprs)\ega.ic_: ega.ice
compress -f ega.ice $(cprs)
$(bins)\keyboard.ice: keyboard.ice
copy keyboard.ice $(bins)
$(cprs)\keyboard.ic_: keyboard.ice
compress -f keyboard.ice $(cprs)
!ENDIF
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?