mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 01:51:33 +01:00
31 lines
426 B
Makefile
31 lines
426 B
Makefile
#
|
|
# 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
|