diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-06-02 21:05:30 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-07-29 12:18:42 +0200 |
commit | 4968c2ed31d8d76af3f2864a06c453982f3898ec (patch) | |
tree | be4bbeaa921d487362150b0045e6cde46b7585c6 /bootstrap | |
parent | 5c19f0a8c890079a8780ae8ce52f18bc975428e1 (diff) |
-towards having 3 SPAs
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -40,9 +40,26 @@ fi # Generate Makefile.am in contrib/ cd contrib rm -f Makefile.am -find wallet-core/aml-backoffice/ -type f | sort | awk '{print " " $1 " \\" }' > Makefile.am.ext +echo 'dist_amlspapkgdata_DATA = \' > Makefile.am.ext +find wallet-core/aml-backoffice/ -type f | sort | awk '{print " " $1 " \\" }' >> Makefile.am.ext # Remove extra '\' at the end of the file truncate -s -2 Makefile.am.ext + +echo "" >> Makefile.am.ext +echo 'dist_kycspapkgdata_DATA = \' >> Makefile.am.ext +# FIXME: replace aml-backoffice with kyc-ui once ready! +find wallet-core/aml-backoffice/ -type f | sort | awk '{print " " $1 " \\" }' >> Makefile.am.ext +# Remove extra '\' at the end of the file +truncate -s -2 Makefile.am.ext + +echo "" >> Makefile.am.ext +echo 'dist_auditorspapkgdata_DATA = \' >> Makefile.am.ext +# FIXME: replace aml-backoffice with auditor-backoffice once ready! +find wallet-core/auditor-backoffice/ -type f | sort | awk '{print " " $1 " \\" }' >> 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 |