mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 13:58:15 +02:00

* Updated makefiles for packaging support * created temporary lazarusmake.ini to use with fpcmake git-svn-id: trunk@182 -
41 lines
611 B
Makefile
41 lines
611 B
Makefile
#
|
|
# Makefile.fpc for Lazarus for Free Pascal
|
|
#
|
|
|
|
[targets]
|
|
programs=lazarus
|
|
#dirs=lcl components designer
|
|
dirs=lcl components
|
|
exampledirs=examples
|
|
|
|
[clean]
|
|
units=$(basename $(wildcard *$(PPUEXT)))
|
|
|
|
[require]
|
|
packages=fcl gtk
|
|
|
|
[dirs]
|
|
targetdir=.
|
|
unitdir=. ./lcl/units ./components/units ./designer
|
|
incdir=. ./include ./include/$(OS_TARGET)
|
|
|
|
[install]
|
|
packagename=lazarus
|
|
|
|
[presettings]
|
|
|
|
[rules]
|
|
.PHONY: examples lcl components ide
|
|
|
|
lcl: lcl_all
|
|
|
|
examples: lcl
|
|
$(MAKE) -C examples
|
|
|
|
components: lcl components_all
|
|
|
|
ide:
|
|
$(MAKE) --assume-new=lazarus.pp lazarus$(EXEEXT)
|
|
|
|
all: lcl components ide
|