diff options
author | midipix <writeonce@midipix.org> | 2021-04-24 20:13:30 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-24 20:29:16 +0000 |
commit | 80e4ef6fa3b97795db4f455a0d9f483690fcb10f (patch) | |
tree | 92886e3532baf309c3713a7ceb303fe808eb3b14 /configure | |
parent | 8cf8f59060051600db9c2c52843414591f47e36f (diff) | |
download | w32lib-80e4ef6fa3b97795db4f455a0d9f483690fcb10f.tar.bz2 w32lib-80e4ef6fa3b97795db4f455a0d9f483690fcb10f.tar.xz |
build system: allow projects to specify an alternate Makefile name.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 5 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" |