mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-15 19:27:12 +02:00
31 lines
529 B
Makefile
31 lines
529 B
Makefile
#
|
|
# Makefile.fpc for shedit
|
|
#
|
|
|
|
[targets]
|
|
programs=eratos qsort hello blackbox magic lines fpctris
|
|
programs_win32=winhello menu mandel dlltest testdll
|
|
programs_linux=mandel samegame
|
|
programs_go32v2=mandel samegame
|
|
|
|
[dirs]
|
|
fpcdir=../..
|
|
unitdir=$(FPCDIR)/api
|
|
targetdir=.
|
|
|
|
|
|
[rules]
|
|
ifeq ($(OS_TARGET),win32)
|
|
vpath %$(PASEXT) win32
|
|
endif
|
|
|
|
#################################
|
|
# Demo installation for linux
|
|
#
|
|
|
|
DEMOINSTALLDIR=$(DOCINSTALLDIR)/demo
|
|
|
|
installdemo:
|
|
$(MKDIR) $(DEMOINSTALLDIR)
|
|
$(COPY) -rf * $(DEMOINSTALLDIR)
|