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

~ Changed makefiles ~ Removed testform from lararus and changed it into program * some formatting git-svn-id: trunk@106 -
37 lines
555 B
Makefile
37 lines
555 B
Makefile
#
|
|
# Makefile.fpc for Lazarus for Free Pascal
|
|
#
|
|
|
|
[targets]
|
|
programs=lazarus
|
|
#dirs=lcl components designer
|
|
dirs=lcl components
|
|
|
|
[clean]
|
|
units=$(basename $(wildcard *$(PPUEXT)))
|
|
|
|
[require]
|
|
packages=fcl gtk
|
|
|
|
[dirs]
|
|
targetdir=.
|
|
unitdir=. ./lcl/units ./components/units ./designer
|
|
incdir=. ./include ./include/$(OS_TARGET)
|
|
|
|
[presettings]
|
|
|
|
[rules]
|
|
.PHONY: examples lcl components ide
|
|
|
|
lcl: lcl_all
|
|
|
|
examples: lcl
|
|
$(MAKE) -C examples
|
|
|
|
components: components_all
|
|
|
|
ide:
|
|
$(MAKE) --assume-new=lazarus.pp lazarus$(EXEEXT)
|
|
|
|
all: lcl components ide
|