From 9d419e77a0621ddf8398edecb40ddedc3388dc42 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Thu, 5 Oct 2023 22:49:19 +0100 Subject: handle/make/*: unified main() function Signed-off-by: Leah Rowe --- script/handle/make/config | 22 ++-------------------- script/handle/make/file | 28 +++++++--------------------- 2 files changed, 9 insertions(+), 41 deletions(-) (limited to 'script/handle') diff --git a/script/handle/make/config b/script/handle/make/config index 9d028a85..694119c4 100755 --- a/script/handle/make/config +++ b/script/handle/make/config @@ -9,6 +9,7 @@ set -u -e . "include/err.sh" . "include/option.sh" +. "include/make.sh" read projectname < projectname read our_version < version @@ -20,26 +21,7 @@ eval "$(setvars "" arch cfgsdir codedir config config_name crossgcc_ada mode \ tmpclean="$(mktemp -d -t makeclean.XXXXXXXXXX)" -main() -{ - while getopts b:m:u:c:x: option - do - case "${1}" in - -b) mode="all" ;; - -u) mode="oldconfig" ;; - -m) mode="menuconfig" ;; - -c) mode="distclean" ;; - -x) mode="crossgcc-clean" ;; - *) fail "Invalid option" ;; - esac - shift; project="${OPTARG}"; shift - done - [ -z "${mode}" ] && fail "mode not given (-m, -u, -b, -c or -x)" - [ -z "${project}" ] && fail "project name not specified" - - handle_dependencies $@ - handle_targets -} +# main() is in include/make.sh handle_dependencies() { diff --git a/script/handle/make/file b/script/handle/make/file index c0a6afb4..ff41f375 100755 --- a/script/handle/make/file +++ b/script/handle/make/file @@ -6,30 +6,16 @@ set -u -e . "include/err.sh" +. "include/make.sh" -eval "$(setvars "" mode project _flag)" +eval "$(setvars "" mode project _flag codedir)" -main() -{ - while getopts b:c: option - do - _flag="${1}" - case "${_flag}" in - -b) : ;; - -c) mode="distclean" ;; - *) err "Invalid option" ;; - esac - shift; project="${OPTARG}"; shift - done - [ -z "${project}" ] && err "project name not specified" - [ $# -gt 0 ] && x_ ./handle make file ${_flag} ${@} - - handle_dependencies - run_make_command -} +# main() is in include/make.sh handle_dependencies() { + [ $# -gt 0 ] && x_ ./handle make file ${_flag} ${@} + [ -d "${project}" ] || x_ ./update project repo "${project%/*}" [ -d "${project}" ] || \ err "handle_dependencies: ${project%/*} not downloaded" @@ -42,11 +28,11 @@ handle_dependencies() ) } -run_make_command() +handle_targets() { [ -f "${project}/Makefile" ] || [ -f "${project}/makefile" ] || \ [ -f "${project}/GNUmakefile" ] || return 0 - [ -z "${mode}" ] && x_ make -C "${project}" -j$(nproc) && return 0 + [ "${mode}" = "all" ] && x_ make -C "${project}" -j$(nproc) && return 0 x_ make -C "${project}" clean make -C "${project}" distclean 2>/dev/null || : } -- cgit v1.2.1