📄 makefile
字号:
##
## aPLib compression library - the smaller the better :)
##
## Delphi example makefile (Borland make)
##
## Copyright (c) 1998-2002 by Joergen Ibsen / Jibz
## All Rights Reserved
##
# Add -DDYNAMIC_VERSION to the dccflags variable to link with the
# dll interface (remember to copy the aPLib dll here).
libdir = ..\..\lib\delphi
target = aptest.exe
objects = t_main.dcu aplib.dcu aplibu.dcu aplibud.dcu aptest.dpr $(libdir)\aplib.obj $(libdir)\depack.obj $(libdir)\depackf.obj
dcc = dcc32.exe
dccflags = -Q -$A+ -$O+ -$D-
.phony: clean
$(target): $(objects)
$(dcc) $(dccflags) aptest.dpr
.pas.dcu:
$(dcc) $(dccflags) $<
clean:
del $(target)
del *.dcu
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -