mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-04 17:37:31 +01:00
53 lines
985 B
Makefile
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.
|