Makefile.fpc 525 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #
  2. # Makefile.fpc for FP IDE
  3. #
  4. [targets]
  5. dirs=fake text
  6. [install]
  7. packagename=ide
  8. sourcesubdirs=0
  9. [sections]
  10. none=1
  11. zipsourceinstall=1
  12. [defaults]
  13. defaultinstalldir=text
  14. [rules]
  15. .PHONY: gdb full fullgdb clean_compiler
  16. all:
  17. $(MAKE) -C text all
  18. gdb:
  19. $(MAKE) -C text all GDB=1
  20. full:
  21. $(MAKE) -C text all FULL=1 "NEEDOPT+=-Sg -dGDB -dBROWSERCOL"
  22. fullgdb:
  23. $(MAKE) -C text all FULL=1 GDB=1 "NEEDOPT+=-Sg -dGDB -dBROWSERCOL"
  24. #
  25. # Misc
  26. #
  27. clean_compiler:
  28. $(MAKE) -C ../compiler clean