Makefile.fpc 509 B

1234567891011121314151617181920212223242526272829303132333435
  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. [install]
  16. fpcpackage=y
  17. [rules]
  18. #################################
  19. # Demo installation for linux
  20. #
  21. .PHONY: installexamples demozip
  22. installexamples:
  23. $(MKDIR) $(INSTALL_SOURCEDIR)
  24. $(COPYTREE) * $(INSTALL_SOURCEDIR)
  25. demozip: zipsourceinstall
  26. [default]
  27. fpcdir=..