mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 16:18:23 +02:00
47 lines
828 B
Makefile
47 lines
828 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))) $(basename $(wildcard ./debugger/*$(PPUEXT)))
|
|
files=$(wildcard ./designer/*$(OEXT))
|
|
|
|
[require]
|
|
rtl=1
|
|
options=-gl
|
|
packages=fcl gtk
|
|
|
|
[dirs]
|
|
# not with the lazarusmake.ini
|
|
# targetdir=.
|
|
unitdir=. ./lcl/units ./components/units ./designer ./debugger
|
|
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
|