mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 10:18:05 +02:00
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
[package]
|
|
main=lcl
|
|
|
|
[require]
|
|
packages=rtl
|
|
|
|
[target]
|
|
units=lcl.pas
|
|
|
|
[prerules]
|
|
DBG_OPTIONS=
|
|
ifeq ($(OS_TARGET),darwin)
|
|
DBG_OPTIONS=-gw
|
|
endif
|
|
|
|
[compiler]
|
|
options=-MObjFPC -Scghi -O1 -g -gl -l -vewnhibq -dqt5 $(DBG_OPTIONS)
|
|
unitdir=../../units/$(CPU_TARGET)-$(OS_TARGET) \
|
|
../../../packager/units/$(CPU_TARGET)-$(OS_TARGET) \
|
|
../../../components/lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) \
|
|
.. .
|
|
unittargetdir=../../units/$(CPU_TARGET)-$(OS_TARGET)/qt5
|
|
|
|
[clean]
|
|
files=$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) \
|
|
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) \
|
|
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT)) \
|
|
$(wildcard $(COMPILER_UNITTARGETDIR)/*.lfm) \
|
|
$(wildcard $(COMPILER_UNITTARGETDIR)/*.res) \
|
|
$(wildcard $(COMPILER_UNITTARGETDIR)/*.compiled) \
|
|
$(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
|
|
|
|
[rules]
|
|
.PHONY: cleartarget compiled all
|
|
|
|
cleartarget:
|
|
-$(DEL) $(COMPILER_UNITTARGETDIR)/lcl$(PPUEXT) \
|
|
$(COMPILER_UNITTARGETDIR)/lcl$(OEXT)
|
|
|
|
compiled:
|
|
$(CPPROG) -f Makefile.compiled $(COMPILER_UNITTARGETDIR)/lcl.compiled
|
|
|
|
all: cleartarget $(COMPILER_UNITTARGETDIR) ../lcl$(PPUEXT) compiled
|
|
|