mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-14 13:32:56 +02:00
35 lines
668 B
Makefile
35 lines
668 B
Makefile
# $Id$
|
|
#
|
|
# Makefile.fpc for Lazarus for Free Pascal
|
|
#
|
|
|
|
[package]
|
|
name=codetools
|
|
version=0.8a
|
|
|
|
[compiler]
|
|
unitdir=.
|
|
unittargetdir=../units
|
|
options=-gl
|
|
|
|
[target]
|
|
units=allcodetoolunits
|
|
implicitunits=avl_tree basiccodetools codecache sourcelog \
|
|
customcodetool pascalparsertool finddeclarationtool stdcodetools \
|
|
methodjumptool eventcodetool codecompletiontool codeatom codetree \
|
|
definetemplates expreval keywordfunclists linkscanner sourcechanger \
|
|
fileprocs
|
|
|
|
[require]
|
|
packages=fcl
|
|
|
|
[default]
|
|
|
|
[rules]
|
|
.PHONY: cleartarget all
|
|
|
|
cleartarget:
|
|
-$(DEL) $(COMPILER_UNITTARGETDIR)/allcodetoolunits$(PPUEXT)
|
|
|
|
all: cleartarget allcodetoolunits$(PPUEXT)
|