lazarus/components/codetools/Makefile.fpc
mattias a2ff752225 implemented findeclaration gdb exceptions
git-svn-id: trunk@3978 -
2003-03-27 22:16:01 +00:00

42 lines
891 B
Makefile

# $Id$
#
# Makefile.fpc for Lazarus for Free Pascal
#
[package]
name=lazarus/codetools
version=0.8a
[compiler]
unitdir=.
unittargetdir=../units
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))
[require]
packages=fcl
[default]
[rules]
.PHONY: cleartarget all
cleartarget:
-$(DEL) $(COMPILER_UNITTARGETDIR)/allcodetoolunits$(PPUEXT)
all: cleartarget allcodetoolunits$(PPUEXT)
# end.