lazarus/components/codetools/Makefile.fpc
mattias 99bc6cfe49 increased version to 0.9.0 beta
git-svn-id: trunk@4236 -
2003-06-05 15:53:30 +00:00

40 lines
871 B
Makefile

# $Id$
#
# Makefile.fpc for Lazarus for Free Pascal
#
[package]
name=codetools
version=1.0
[require]
packages=fcl
[compiler]
unittargetdir=../units
unitdir=.
options=-gl
[target]
units=allcodetoolunits
implicitunits=codetoolsstrconsts avl_tree basiccodetools codecache sourcelog \
customcodetool multikeywordlisttool pascalparsertool finddeclarationtool \
identcompletiontool stdcodetools resourcecodetool methodjumptool \
eventcodetool codecompletiontool codeatom codetree definetemplates expreval \
keywordfunclists linkscanner sourcechanger fileprocs codetoolsstructs \
codetoolmanager memcheck
[clean]
files=$(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
[rules]
.PHONY: cleartarget all
cleartarget:
-$(DEL) $(COMPILER_UNITTARGETDIR)/allcodetoolunits$(PPUEXT)
all: cleartarget allcodetoolunits$(PPUEXT)
# end.