diff options
author | midipix <writeonce@midipix.org> | 2021-04-24 20:13:30 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-24 20:29:14 +0000 |
commit | 885935c29bd3b997af1f62fc3f500accf0e94846 (patch) | |
tree | cbb9a546f7f4156ab5a43a8d60a5e5f789ee4386 /configure | |
parent | c53ef92e4ec81a61b8aa103e2ea6326371ae24d4 (diff) | |
download | ntapi-885935c29bd3b997af1f62fc3f500accf0e94846.tar.bz2 ntapi-885935c29bd3b997af1f62fc3f500accf0e94846.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" |