Makefile.fpc 551 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # Makefile.fpc for FP IDE
  3. #
  4. [package]
  5. name=ide
  6. version=1.0.5
  7. [target]
  8. dirs=fake text
  9. [install]
  10. fpcpackage=y
  11. [default]
  12. fpcdir=..
  13. dir=text
  14. [rules]
  15. .PHONY: gdb full fullgdb clean_compiler
  16. all:
  17. $(MAKE) -C text all
  18. gdb:
  19. $(MAKE) -C text gdb
  20. full:
  21. $(MAKE) -C text full
  22. fullgdb:
  23. $(MAKE) -C text fullgdb
  24. # Also clean the fake dir
  25. clean: fpc_clean $(addsuffix _clean,$(TARGET_DIRS))
  26. distclean: fpc_distclean $(addsuffix _distclean,$(TARGET_DIRS))
  27. #
  28. # Misc
  29. #
  30. clean_compiler:
  31. $(MAKE) -C ../compiler clean