mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 02:28:10 +02:00
21 lines
338 B
Bash
21 lines
338 B
Bash
#! /bin/sh
|
|
set -e
|
|
FPCMAKE=/usr/local/bin/fpcmake
|
|
|
|
find . -name Makefile.fpc | xargs $FPCMAKE -Tall
|
|
|
|
cd ./rtl
|
|
./regenmakefiles.sh
|
|
cd ./..
|
|
|
|
cd ./packages
|
|
./regenmakefiles.sh
|
|
cd ./..
|
|
|
|
cd ./utils/build/
|
|
$FPCMAKE -Tall -s -o Makefile.pkg Makefile.fpc
|
|
cd ./../..
|
|
|
|
cd ./packages/build/
|
|
$FPCMAKE -Tall -s -o Makefile.pkg Makefile.fpc
|
|
cd ./../.. |