makefile

来自「生物信息学中的遗传数据分析的delphi源码。」· 代码 · 共 46 行

TXT
46
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?