makefile
来自「生物信息学中的遗传数据分析的delphi源码。」· 代码 · 共 33 行
TXT
33 行
# Make installation program for COMPONENT
BINDIR = ..
TPWDIR = C:\TPW
TP = $(TPWDIR)\TPCW
TPFLAGS = /M /U..\CONTROLS
# Implicit rule
.pas.tpu:
$(TP) $(TPFLAGS) $<
# Dependencies
setup.exe: setup.pas setup2.res
$(TP) $(TPFLAGS) setup.pas
# Targets
all: setup.exe
clean:
del *.exe
install:
copy *.exe $(BINDIR)
copy cpw.ini $(BINDIR)
copy setup.inf $(BINDIR)
del *.exe
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?