mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-01 19:02:35 +02:00
45 lines
621 B
Makefile
45 lines
621 B
Makefile
#
|
|
# Makefile.fpc for FPC demo package
|
|
#
|
|
|
|
[targets]
|
|
dirs=text graph
|
|
dirs_go32v2=modex
|
|
dirs_win32=win32
|
|
dirs_linux=linux
|
|
|
|
[install]
|
|
packagename=demo
|
|
|
|
[defaults]
|
|
defaultrule=all
|
|
|
|
[dirs]
|
|
fpcdir=..
|
|
targetdir=.
|
|
|
|
[sections]
|
|
info=0
|
|
|
|
[rules]
|
|
.PHONY: info
|
|
|
|
info:
|
|
@echo Makefile targets are
|
|
@echo - all
|
|
@echo - text
|
|
@echo - graph
|
|
@echo - modex
|
|
@echo - win32
|
|
@echo
|
|
@echo - installexamples
|
|
|
|
#################################
|
|
# Demo installation for linux
|
|
#
|
|
|
|
.PHONY: installexamples
|
|
|
|
installexamples:
|
|
$(MAKE) sourceinstall SOURCEINSTALLDIR=$(EXAMPLEINSTALLDIR)
|