diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-11-16 15:24:24 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-11-16 15:24:24 +0100 |
commit | 758afecc1bf42cbfa498f10a9a9735e99758b605 (patch) | |
tree | 0fba1a1b32d5587fe6c8dccea94821f12460aa17 /bootstrap | |
parent | 0d8f1fa2b4998d6d44164512c8aeb1e861ab0a98 (diff) |
add logic to serve AML SPA
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -39,4 +39,17 @@ 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/aml-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 -fi |