lazarus/Makefile.fpc
lazarus 9b472a0458 MWE:
* Fixed zipinstall
  * fixed clean
  * fixed build with compiler from CVS

git-svn-id: trunk@188 -
2001-02-20 23:12:25 +00:00

46 lines
759 B
Makefile

#
# Makefile.fpc for Lazarus for Free Pascal
#
[targets]
programs=lazarus
dirs=lcl components
exampledirs=examples
[clean]
units=$(basename $(wildcard *$(PPUEXT))) $(basename $(wildcard ./designer/*$(PPUEXT)))
files=$(wildcard ./designer/*$(OEXT))
[require]
rtl=1
packages=fcl gtk
[dirs]
# not with the lazarusmake.ini
# targetdir=.
unitdir=. ./lcl/units ./components/units ./designer
incdir=. ./include ./include/$(OS_TARGET)
[install]
packagename=lazarus
[presettings]
[rules]
.PHONY: examples lcl components ide tools
lcl: lcl_all
examples: lcl
$(MAKE) -C examples
components: lcl components_all
ide:
$(MAKE) --assume-new=lazarus.pp lazarus$(EXEEXT)
tools: lcl components
$(MAKE) -C tools
all: lcl components ide