mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-02 23:40:41 +01:00
33 lines
459 B
Makefile
33 lines
459 B
Makefile
#
|
|
# Makefile.fpc to create and group units needed for
|
|
# tests for all targets
|
|
#
|
|
|
|
[target]
|
|
units=erroru
|
|
|
|
[install]
|
|
fpcpackage=y
|
|
|
|
[default]
|
|
fpcdir=../..
|
|
|
|
|
|
[rules]
|
|
.PHONY: rtl fcl clean
|
|
|
|
INSTALLOPT=INSTALL_UNITDIR=$(BASEDIR)
|
|
|
|
rtl:
|
|
$(MAKE) -C ../../rtl all
|
|
$(MAKE) -C ../../rtl install $(INSTALLOPT)
|
|
|
|
fcl:
|
|
$(MAKE) -C ../../fcl all
|
|
$(MAKE) -C ../../fcl install $(INSTALLOPT)
|
|
|
|
clean : cleanall
|
|
|
|
erroru$(PPUEXT): erroru.pp rtl fcl
|
|
|