📄 makefile
字号:
# make the custom DLL's for COMPONENT
BINDIR = ..
TPWDIR = C:\TPW
TP = $(TPWDIR)\TPCW
TPFLAGS = /M /U$(TPWDIR)\RWDEMOS
# Implicit rule
.pas.tpu:
$(TP) $(TPFLAGS) $<
# Dependencies
spin2.dll: spin2.pas spinco.pas spin.res
$(TP) $(TPFLAGS) spin2.pas
meter.dll: meter.pas meterco.pas meterdlg.res
$(TP) $(TPFLAGS) meter.pas
rod.dll: rod.pas gridco.pas grid2.res
$(TP) $(TPFLAGS) rod.pas
DLLS = spin2.dll meter.dll rod.dll
# Targets
all: meter rod spin2
meter: meter.dll
rod: rod.dll
spin2: spin2.dll
clean:
del *.tpu
del *.dll
install:
copy *.dll $(BINDIR)
del *.dll
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -