mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-12 09:49:11 +02:00
29 lines
444 B
Makefile
29 lines
444 B
Makefile
#
|
|
# Makefile.fpc for debugserver
|
|
#
|
|
|
|
[target]
|
|
units=msgintf debugserverintf dbugintf
|
|
dirs=gtk console
|
|
examples=testdebug speeddebug
|
|
rsts=debugserverintf dbugintf
|
|
|
|
[clean]
|
|
|
|
[compiler]
|
|
|
|
[install]
|
|
fpcpackage=y
|
|
|
|
[default]
|
|
fpcdir=../..
|
|
|
|
|
|
[rules]
|
|
.NOTPARALLEL:
|
|
debugserverintf$(PPUEXT): msgintf$(PPUEXT) debugserverintf.pp
|
|
$(COMPILER) debugserverintf$(PASEXT)
|
|
|
|
dbugintf$(PPUEXT): msgintf$(PPUEXT) dbugintf.pp
|
|
$(COMPILER) dbugintf.pp
|