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