mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-04 07:07:34 +01:00
41 lines
525 B
Makefile
41 lines
525 B
Makefile
#
|
|
# Makefile.fpc for FP IDE
|
|
#
|
|
|
|
[targets]
|
|
dirs=fake text
|
|
|
|
[install]
|
|
packagename=ide
|
|
sourcesubdirs=0
|
|
|
|
[sections]
|
|
none=1
|
|
zipsourceinstall=1
|
|
|
|
[defaults]
|
|
defaultinstalldir=text
|
|
|
|
|
|
[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
|
|
|