mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 21:02:09 +02:00

* subdir requirement checking works, but not very optimal yet as it can load the same Makefile.fpc multiple times
52 lines
702 B
Makefile
52 lines
702 B
Makefile
#
|
|
# Makefile.fpc for Free Pascal Utils
|
|
#
|
|
|
|
[package]
|
|
name=fputils
|
|
version=1.1
|
|
|
|
[target]
|
|
dirs=fpcm tply h2pas fprcp
|
|
programs=ppufiles ppudump ppumove ppdep ptop rstconv data2inc delp bin2obj postw32
|
|
|
|
[clean]
|
|
units=ppu ptopu makeini crc
|
|
|
|
[require]
|
|
packages=fcl
|
|
|
|
[default]
|
|
fpcdir=..
|
|
|
|
|
|
[rules]
|
|
#
|
|
# PPU Tools
|
|
#
|
|
ppu$(PPUEXT): ppu.pas
|
|
|
|
ppudump$(EXEEXT): ppudump.pp ppu$(PPUEXT)
|
|
|
|
ppumove$(EXEEXT): ppumove.pp ppu$(PPUEXT)
|
|
|
|
#
|
|
# Pascal beautifier
|
|
#
|
|
ptop$(EXEEXT): ptop.pp ptopu$(PPUEXT)
|
|
|
|
ptopu$(PPUEXT): ptopu.pp
|
|
|
|
#
|
|
# Other
|
|
#
|
|
|
|
ppdep$(EXEEXT): ppdep.pp
|
|
|
|
#
|
|
# 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 DATA2INC
|