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