⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 生物信息学中的遗传数据分析的delphi源码。
💻
字号:
# 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 + -