📄 pas.mak
字号:
# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -