lazarus/components/codetools/Makefile.fpc
lazarus 040a6ad2a6 MG: started finddeclarationtool
git-svn-id: trunk@518 -
2001-12-12 21:11:29 +00:00

53 lines
985 B
Makefile

# $Id$
#
# Makefile.fpc for Lazarus for Free Pascal
#
[package]
#name=lazarus-codetools
name=lazarus
version=0.8a
[target]
units=avl_tree basiccodetools codecache codetoolmanager sourcelog \
customcodetool pascalparsertool finddeclarationtool stdcodetools \
methodjumptool eventcodetool codecompletiontool codeatom codetree \
definetemplates expreval keywordfunclists linkscanner sourcechanger \
memcheck
[default]
[compiler]
options=-gl
unittargetdir=../units
#targetdir=../units
unitdir=. $(COMPILER_UNITTARGETDIR)
[require]
packages=rtl fcl
[clean]
[install]
[dist]
zipname=lazarus.codetools.$(ZIPSUFFIX)
[rules]
.PHONY: cleartarget all makefile makefiles
cleartarget:
-$(DEL) $(COMPILER_UNITTARGETDIR)/allcodetoolunits$(PPUEXT)
all: cleartarget allcodetoolunits$(PPUEXT)
-$(DEL) $(COMPILER_UNITTARGETDIR)/allcodetoolunits$(PPUEXT)
makefile: Makefile.fpc
-$(FPCMAKE) -w
makefiles: makefile
# end.