X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fcreate-ccan-tree;h=ccfee7c664cdcf3bae592844552a2e291e314ab7;hp=106b7a5051f39025371e9bd0b19c6ad2c45dd8a6;hb=e9704966d0d91d96eefdfad040540ae76d3030ec;hpb=ebcbbcfafce6a239724c841d30b9ba345cef41e4 diff --git a/tools/create-ccan-tree b/tools/create-ccan-tree index 106b7a50..ccfee7c6 100755 --- a/tools/create-ccan-tree +++ b/tools/create-ccan-tree @@ -7,18 +7,18 @@ usage() { Usage: $progname [options] ... options: - -t, --exclude-tests exclude test/ directories from ccan modules - -c, --exclude-configurator exclude configurator. config.h must be - supplied by another method (eg, autotools) + -a, --copy-all copy all files in module tree (not just sources + required for build) + -b, --build-type=TYPE generate build infrastructure of TYPE + (one of 'make', 'make+config') EOF } # parse options, setting the following flags -exclude_tests= -exclude_configurator= +copy_all= +build_type= -opts=$(getopt -o tc --long exclude-tests,exclude-configurator -n $progname \ - -- "$@") +opts=$(getopt -o ab: --long copy-all,build-type: -n $progname -- "$@") if [ $? != 0 ] then @@ -31,13 +31,13 @@ eval set -- "$opts" while : do case "$1" in - -t|--exclude-tests) - exclude_tests=1 + -a|--copy-all) + copy_all=1 shift ;; - -c|--exclude-configurator) - exclude_configurator=1 - shift + -b|--build-type) + build_type="$2" + shift 2 ;; --) shift @@ -58,6 +58,15 @@ then exit 1 fi +# check --build-type argument sanity +case "$build_type" in + ''|'make'|'make+config') + ;; + *) + echo "Invalid build type '$build_type'" >&2 + exit 1 +esac + srcdir=$(dirname $0)/../ outdir="$1" shift @@ -89,6 +98,25 @@ make -s -C "$srcdir" clean # clean up on error trap 'rm -rf $tmpdir' EXIT +copy_ccan_module() { + module_dir="$1" + module_srcdir="$srcdir/$module_dir" + module_destdir="$tmpdir/$module_dir" + + if [ -n "$copy_all" ] + then + # bulk copy + mkdir -p "$(dirname "$module_destdir")" + cp -a "$module_srcdir" "$module_destdir" + else + mkdir -p "$module_destdir" + # only copy sources & license + license="$module_srcdir/LICENSE" + cp -a "$module_srcdir"/*.[ch] "$module_destdir" + [ -e "$license" ] && cp -a "$license" "$module_destdir" + fi +} + # generate list of directories to copy for module in $modules do @@ -110,15 +138,8 @@ done | sort -u | while read dir do - module_srcdir="$srcdir/$dir" - module_destdir="$tmpdir/$dir" echo "Adding $dir" - mkdir -p "$(dirname "$module_destdir")" - cp -a "$module_srcdir" "$module_destdir" - if [ -n "$exclude_tests" ] - then - rm -rf "$module_destdir/test" - fi + copy_ccan_module $dir done # we're done with the dependency-tracking, remove the tool from our @@ -139,26 +160,30 @@ do cp "$license_src" "$license_dest" done -# add ccan Makefile echo "Adding build infrastructure" -cp "$srcdir/Makefile-ccan" "$tmpdir/" -# add top-level Makefile -top_makefile="$tmpdir/Makefile" -cat > "$top_makefile" << EOF +makefile="$tmpdir/Makefile" +if [ "$build_type" = "make" -o "$build_type" = "make+config" ] +then + # add ccan Makefile + cp "$srcdir/Makefile-ccan" "$tmpdir/" + + # add top-level Makefile + cat > "$makefile" << EOF all: libccan.a include Makefile-ccan EOF +fi # optionally add configurator, and relevant parts to top-level Makefile -if [ -z "$exclude_configurator" ] +if [ "$build_type" = "make+config" ] then echo "Adding configurator" mkdir -p "$tmpdir/tools/configurator" cp -a "$srcdir/tools/configurator" "$tmpdir/tools/" - cat >> "$top_makefile" <> "$makefile" <