diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-04-24 20:17:29 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-04-24 20:17:29 +0200 |
commit | 9cbc189fa1c3416e541b0c3e1637908639aca8ae (patch) | |
tree | 1ac8f2952e572ac180483e2908bce642f49c67ff /bootstrap | |
parent | ffcf44889d13d9a327cd47a2b1d44691cca21b9e (diff) |
automatically re-generate Makefile.am to match SPA
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -29,5 +29,16 @@ else echo "Uncrustify not detected, hook not installed. Please install uncrustify if you plan on doing development" fi +# Generate Makefile.am in contrib/ +cd contrib +rm -f Makefile.am +find wallet-core/backoffice/ -type f -printf ' %p \\\n' | sort > Makefile.am.ext +# Remove extra '\' at the end of the file +truncate -s -2 Makefile.am.ext +cat Makefile.am.in Makefile.am.ext >> Makefile.am +# Prevent accidental editing of the generated Makefile.am +chmod -w Makefile.am +cd .. + echo "$0: Running autoreconf" autoreconf -if |