Makefile.fpc 426 B

123456789101112131415161718192021222324252627282930
  1. #
  2. # Makefile.fpc for FP IDE
  3. #
  4. [targets]
  5. dirs=fake text
  6. [sections]
  7. none=1
  8. [rules]
  9. .PHONY: gdb full fullgdb clean_compiler
  10. all:
  11. $(MAKE) -C text all
  12. gdb:
  13. $(MAKE) -C text all GDB=1
  14. full:
  15. $(MAKE) -C text all FULL=1 "NEEDOPT+=-Sg -dGDB -dBROWSERCOL"
  16. fullgdb:
  17. $(MAKE) -C text all FULL=1 GDB=1 "NEEDOPT+=-Sg -dGDB -dBROWSERCOL"
  18. #
  19. # Misc
  20. #
  21. clean_compiler:
  22. make -C ../../compiler clean