mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-01 15:12:44 +02:00
30 lines
711 B
Makefile
30 lines
711 B
Makefile
# $Id$
|
|
#
|
|
# Makefile.fpc for Lazarus for Free Pascal
|
|
#
|
|
|
|
[target]
|
|
dirs=synedit codetools
|
|
|
|
[clean]
|
|
files=$(wildcard ./units/*$(OEXT)) \
|
|
$(wildcard ./units/*$(PPUEXT)) \
|
|
$(wildcard ./units/*$(RSTEXT)) \
|
|
$(wildcard ./units/$(CPU_TARGET)/$(OS_TARGET)/*$(OEXT)) \
|
|
$(wildcard ./units/$(CPU_TARGET)/$(OS_TARGET)/*$(PPUEXT)) \
|
|
$(wildcard ./units/$(CPU_TARGET)/$(OS_TARGET)/*$(RSTEXT)) \
|
|
$(wildcard ./custom/*$(OEXT)) \
|
|
$(wildcard ./custom/*$(PPUEXT)) \
|
|
$(wildcard ./custom/*$(RSTEXT))
|
|
|
|
[rules]
|
|
.phony: bigidecomponents
|
|
|
|
bigidecomponents: all
|
|
$(MAKE) -C rtticontrols
|
|
$(MAKE) -C printers
|
|
$(MAKE) -C cgi
|
|
$(MAKE) -C cgi/ide
|
|
|
|
cleanlaz: clean
|