123456789101112131415161718192021222324252627282930313233 |
- #
- # Makefile.fpc for FPC demo package
- #
- [package]
- name=demo
- version=1.9.1
- [target]
- dirs=text graph
- dirs_go32v2=modex
- dirs_win32=win32
- dirs_linux=linux
- dirs_os2=os2
- [install]
- fpcpackage=y
- [rules]
- #################################
- # Demo installation for linux
- #
- .PHONY: installexamples demozip
- installexamples:
- $(MKDIR) $(INSTALL_SOURCEDIR)
- $(COPYTREE) * $(INSTALL_SOURCEDIR)
- demozip: zipsourceinstall
- [default]
- fpcdir=..
|