pas.mak
来自「BORLAND公司C语言对话框开发程序」· MAK 代码 · 共 44 行
MAK
44 行
# Pascal make file for Dialog Design's external translators
# Usage:
# make -fpas
# Root directory, change as appropriate
ROOT = C:\BP
# Compiler name, use either tpc or bpc
TPC = tpc
# Unit path, where the System and Pascal units are
UNITPATH = $(ROOT)\units;
# Temporary config file name in default directory
CFG = $(TPC).cfg
# Compiler name, add ROOT\bin directory
TPC = $(ROOT)\bin\$(TPC)
# *Explicit Rules*
all: passrc1.exe passrc2.exe pasrsrc.exe delete
passrc1.exe: $(CFG)
$(TPC) /m passrc1
passrc2.exe: $(CFG)
$(TPC) /m passrc2
pasrsrc.exe: $(CFG)
$(TPC) /m pasrsrc
delete:
del readscpt.tpu
del inplong.tpu
del $(CFG)
# *Compiler Configuration File*
$(CFG): pas.mak
copy &&|
/$A-,B-,D-,E+,F-,G-,I+,L-,N-,O-,P-,Q-,R-,S-,T-,V-,X+
/U$(UNITPATH)
| $(CFG)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?