Makefile.fpc 621 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #
  2. # Makefile.fpc for FPC demo package
  3. #
  4. [targets]
  5. dirs=text graph
  6. dirs_go32v2=modex
  7. dirs_win32=win32
  8. dirs_linux=linux
  9. [install]
  10. packagename=demo
  11. [defaults]
  12. defaultrule=all
  13. [dirs]
  14. fpcdir=..
  15. targetdir=.
  16. [sections]
  17. info=0
  18. [rules]
  19. .PHONY: info
  20. info:
  21. @echo Makefile targets are
  22. @echo - all
  23. @echo - text
  24. @echo - graph
  25. @echo - modex
  26. @echo - win32
  27. @echo
  28. @echo - installexamples
  29. #################################
  30. # Demo installation for linux
  31. #
  32. .PHONY: installexamples
  33. installexamples:
  34. $(MAKE) sourceinstall SOURCEINSTALLDIR=$(EXAMPLEINSTALLDIR)