diff options
author | midipix <writeonce@midipix.org> | 2021-04-24 20:13:30 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-24 20:29:13 +0000 |
commit | 8090a4710c1a92a51cea720a74f74694aaf10ae9 (patch) | |
tree | 3f3b792151a60879db25729e8caaf8eeeee798b5 | |
parent | 237e7afbbe14881d08b540d2266df4a49890283a (diff) | |
download | apimagic-8090a4710c1a92a51cea720a74f74694aaf10ae9.tar.bz2 apimagic-8090a4710c1a92a51cea720a74f74694aaf10ae9.tar.xz |
build system: allow projects to specify an alternate Makefile name.
-rwxr-xr-x | configure | 5 | ||||
-rw-r--r-- | sofort/config/config.vars | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -837,6 +837,11 @@ config_host() config_fini() { + # rename Makefile as needed + if [ -n "$mb_makefile" ]; then + mv $mb_pwd/Makefile $mb_pwd/$mb_makefile + fi + # project-specific post-configuration steps if [ _$mb_use_custom_cfgfini = _yes ]; then . "$mb_project_dir/project/config/cfgfini.sh" diff --git a/sofort/config/config.vars b/sofort/config/config.vars index f3ea78e..903abd5 100644 --- a/sofort/config/config.vars +++ b/sofort/config/config.vars @@ -39,6 +39,7 @@ srcball_sha256 make +makefile makemode build |