Makefile.fpc 447 B

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # Makefile.fpc for FPC demo package
  3. #
  4. [package]
  5. name=demo
  6. version=1.9.1
  7. [target]
  8. dirs=text graph
  9. dirs_go32v2=modex
  10. dirs_win32=win32
  11. dirs_linux=linux
  12. dirs_os2=os2
  13. [install]
  14. fpcpackage=y
  15. [rules]
  16. #################################
  17. # Demo installation for linux
  18. #
  19. .PHONY: installexamples demozip
  20. installexamples:
  21. $(MKDIR) $(INSTALL_SOURCEDIR)
  22. $(COPYTREE) * $(INSTALL_SOURCEDIR)
  23. demozip: zipsourceinstall
  24. [default]
  25. fpcdir=..