lazarus/ideintf/Makefile.fpc
mattias 627a0265fb changed default widgetset gtk to gtk2
git-svn-id: trunk@16910 -
2008-10-07 12:05:16 +00:00

88 lines
1.6 KiB
Makefile

# $Id$
#
# Makefile.fpc for Lazarus for Free Pascal
#
[package]
name=ideintf
version=0.9b
[compiler]
unitdir=../lcl/units/$(CPU_TARGET)-$(OS_TARGET) \
../components/codetools/$(CPU_TARGET)-$(OS_TARGET) \
../packager/units/$(CPU_TARGET)-$(OS_TARGET) .
unittargetdir=units/$(CPU_TARGET)-$(OS_TARGET)
options=-gl -dlcl$(LCL_PLATFORM)
[target]
units=allideintf
implicitunits=a \
ActionsEditor \
ColumnDlg \
ComponentEditors \
ComponentReg \
ComponentTreeView \
ConfigStorage \
DBPropEdits \
FieldsEditor \
FormEditingIntf \
FrmSelectProps \
GraphPropEdits \
HelpFPDoc \
HelpHTML \
HelpIntf \
IDECommands \
IDEWindowIntf \
ImageListEditor \
LazIDEIntf \
ListViewPropEdit \
MacroIntf \
MaskPropEdit \
MenuIntf \
NewItemIntf \
ObjectInspector \
ObjInspStrConsts \
PackageIntf \
ProjectIntf \
PropEdits \
SrcEditorIntf \
TextTools
[clean]
files=$(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT)) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(OEXT)) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(PPUEXT)) \
$(wildcard $(COMPILER_UNITTARGETDIR)/*$(RSTEXT))
[require]
packages=
[default]
lcldir=../lcl
[prerules]
# LCL Platform
ifndef LCL_PLATFORM
ifneq ($(findstring $(OS_TARGET),win32 win64),)
LCL_PLATFORM=win32
else
ifeq ($(OS_TARGET),darwin)
LCL_PLATFORM=carbon
else
LCL_PLATFORM=gtk2
endif
endif
endif
export LCL_PLATFORM
[rules]
.PHONY: cleartarget all
cleartarget:
-$(DEL) $(COMPILER_UNITTARGETDIR)/allideintf$(PPUEXT)
all: cleartarget $(COMPILER_UNITTARGETDIR) allideintf$(PPUEXT)
# end.