Makefile.fpc 584 B

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