lazarus/examples/Makefile.fpc
lazarus b1e06b7653 Keith:
* Fixes for Win32
  * Added new listviewtest.pp example

git-svn-id: trunk@659 -
2002-02-04 10:54:33 +00:00

39 lines
667 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) .. .
units=allexamples
[prerules]
ifndef LCL_PLATFORM
ifeq ($(OS_TARGET), win32)
LCL_PLATFORM=win32
else
LCL_PLATFORM=gtk
endif
export LCL_PLATFORM
endif