mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-05 15:18:32 +02:00

* distclean uses cleanall rule and removes units dir * cross compile support fixed, it is now possible to cycle a ppcsparc without deleting ppc386 * bintutilsperfix defaults to cpu-os-
40 lines
536 B
Makefile
40 lines
536 B
Makefile
#
|
|
# Makefile.fpc for Free Pascal Compiler Utils
|
|
#
|
|
|
|
[target]
|
|
programs=fpc ppufiles ppudump ppumove
|
|
|
|
[clean]
|
|
units=ppu crc
|
|
|
|
[compiler]
|
|
unitdir=..
|
|
sourcedir=..
|
|
|
|
[install]
|
|
fpcpackage=y
|
|
|
|
[default]
|
|
fpcdir=../..
|
|
|
|
|
|
[rules]
|
|
#
|
|
# PPU Tools
|
|
#
|
|
ppu$(PPUEXT): ppu.pas
|
|
|
|
ppufiles$(EXEEXT): ppufiles.pp ppu$(PPUEXT)
|
|
|
|
ppudump$(EXEEXT): ppudump.pp ppu$(PPUEXT)
|
|
|
|
ppumove$(EXEEXT): ppumove.pp ppu$(PPUEXT)
|
|
|
|
#
|
|
# Don't export some tools, which are found in the current dir if it's in
|
|
# the path, so are not valid for the subdirs
|
|
#
|
|
|
|
unexport PPUFILES PPUMOVE
|