mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 11:59:32 +02:00
37 lines
530 B
Makefile
37 lines
530 B
Makefile
#
|
|
# Makefile.fpc for FPC demo package
|
|
#
|
|
|
|
[package]
|
|
name=demo
|
|
version=1.9.8
|
|
|
|
[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
|
|
dirs_morphos=morphos
|
|
|
|
[install]
|
|
fpcpackage=y
|
|
|
|
[rules]
|
|
#################################
|
|
# Demo installation for linux
|
|
#
|
|
|
|
.PHONY: installexamples demozip
|
|
|
|
installexamples:
|
|
$(MKDIR) $(INSTALL_SOURCEDIR)
|
|
$(COPYTREE) * $(INSTALL_SOURCEDIR)
|
|
|
|
demozip: zipsourceinstall
|
|
|
|
[default]
|
|
fpcdir=..
|