Makefile.fpc 530 B

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