lazarus/examples/Makefile.fpc
lazarus c5a6f3f06b MG: added component/units to unit path
git-svn-id: trunk@1680 -
2002-05-15 05:25:57 +00:00

39 lines
687 B
Makefile

#
# Makefile.fpc for LCL Examples for Free Pascal
#
[package]
name=lazarus-examples
version=0.8a
[target]
units=hello notebk comdialogs progressbar trackbar listboxtest \
bitbutton combobox checkbox scrollbar edittest memotest \
groupbox speedtest toolbar messagedialogs notebooktest \
listviewtest testall
[require]
packages=fcl regexpr
[clean]
files=$(wildcard *$(OEXT)) $(wildcard *$(PPUEXT))
[default]
[compiler]
options=-gl
unitdir=../lcl/units ../lcl/units/$(LCL_PLATFORM) ../components/units .. .
units=allexamples
[prerules]
ifndef LCL_PLATFORM
ifeq ($(OS_TARGET), win32)
LCL_PLATFORM=win32
else
LCL_PLATFORM=gtk
endif
export LCL_PLATFORM
endif