mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-01 15:32:35 +02:00
50 lines
845 B
Makefile
50 lines
845 B
Makefile
# $Id$
|
|
#
|
|
# Makefile.fpc for Lazarus for Free Pascal
|
|
#
|
|
|
|
[package]
|
|
#name=lazarus-codetools
|
|
name=lazarus
|
|
version=0.7a
|
|
|
|
[target]
|
|
units=avl_tree basiccodetools codecache codetoolmanager codetools sourcelog \
|
|
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.
|