Makefile.fpc 529 B

123456789101112131415161718192021222324252627282930
  1. #
  2. # Makefile.fpc for shedit
  3. #
  4. [targets]
  5. programs=eratos qsort hello blackbox magic lines fpctris
  6. programs_win32=winhello menu mandel dlltest testdll
  7. programs_linux=mandel samegame
  8. programs_go32v2=mandel samegame
  9. [dirs]
  10. fpcdir=../..
  11. unitdir=$(FPCDIR)/api
  12. targetdir=.
  13. [rules]
  14. ifeq ($(OS_TARGET),win32)
  15. vpath %$(PASEXT) win32
  16. endif
  17. #################################
  18. # Demo installation for linux
  19. #
  20. DEMOINSTALLDIR=$(DOCINSTALLDIR)/demo
  21. installdemo:
  22. $(MKDIR) $(DEMOINSTALLDIR)
  23. $(COPY) -rf * $(DEMOINSTALLDIR)