| 123456789101112131415161718192021222324252627282930 |
- #
- # Makefile.fpc for FP IDE
- #
- [targets]
- dirs=fake text
- [sections]
- none=1
- [rules]
- .PHONY: gdb full fullgdb clean_compiler
- all:
- $(MAKE) -C text all
- gdb:
- $(MAKE) -C text all GDB=1
- full:
- $(MAKE) -C text all FULL=1 "NEEDOPT+=-Sg -dGDB -dBROWSERCOL"
- fullgdb:
- $(MAKE) -C text all FULL=1 GDB=1 "NEEDOPT+=-Sg -dGDB -dBROWSERCOL"
- #
- # Misc
- #
- clean_compiler:
- make -C ../../compiler clean
|