mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-04 05:38:16 +02:00
44 lines
845 B
Makefile
44 lines
845 B
Makefile
# $Id$
|
|
#
|
|
# Makefile.fpc for Lazarus for Free Pascal
|
|
#
|
|
|
|
[package]
|
|
name=ideintf
|
|
version=0.9b
|
|
|
|
[compiler]
|
|
unitdir=../lcl/units/$(CPU_TARGET)/$(OS_TARGET) \
|
|
../components/units/$(CPU_TARGET)/$(OS_TARGET) .
|
|
unittargetdir=units
|
|
options=-gl
|
|
|
|
[target]
|
|
units=allideintf
|
|
implicitunits=idecommands propedits objinspstrconsts objectinspector columndlg \
|
|
componenteditors graphpropedits listviewpropedit imagelisteditor \
|
|
componenttreeview
|
|
|
|
[clean]
|
|
files=$(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT)) \
|
|
$(wildcard ./units/*$(OEXT)) \
|
|
$(wildcard ./units/*$(PPUEXT)) \
|
|
$(wildcard ./units/*$(RSTEXT))
|
|
|
|
[require]
|
|
packages=fcl
|
|
|
|
[default]
|
|
lcldir=../lcl
|
|
|
|
[rules]
|
|
.PHONY: cleartarget all
|
|
|
|
cleartarget:
|
|
-$(DEL) $(COMPILER_UNITTARGETDIR)/allideintf$(PPUEXT)
|
|
|
|
all: cleartarget allideintf$(PPUEXT)
|
|
|
|
# end.
|
|
|