[d0d9e90] | 1 | #!/bin/bash
|
---|
[cace19a4] | 2 | #
|
---|
| 3 | # $Id$
|
---|
[d0d9e90] | 4 | #
|
---|
| 5 | set -e
|
---|
| 6 |
|
---|
[cace333e] | 7 | # TEMPORARY VARIABLES.. development use only
|
---|
[d0d9e90] | 8 | declare MKFILE=Makefile
|
---|
[cace333e] | 9 | declare PREV_PACKAGE=""
|
---|
[5d93cec] | 10 | declare BUILD_SCRIPTS=scripts
|
---|
[bc40917] | 11 | declare TRACKING_DIR=tracking-dir
|
---|
[c62275f6] | 12 |
|
---|
[d0d9e90] | 13 | HEADER="# This file is automatically generated by jhalfs
|
---|
| 14 | # YOU MAY NEED TO EDIT THIS FILE MANUALLY
|
---|
| 15 | #
|
---|
| 16 | # Generated on `date \"+%F %X %Z\"`"
|
---|
| 17 |
|
---|
[cace333e] | 18 |
|
---|
| 19 | #----------------------------------#
|
---|
| 20 | __wrt_target() { # Create target and initialize log file
|
---|
| 21 | #----------------------------------#
|
---|
| 22 | local i=$1
|
---|
| 23 | local PREV=$2
|
---|
| 24 | (
|
---|
| 25 | cat << EOF
|
---|
| 26 |
|
---|
| 27 | $i: $PREV
|
---|
| 28 | @\$(call echo_message, Building)
|
---|
[c62275f6] | 29 | @./progress_bar.sh \$@ &
|
---|
[cace333e] | 30 | EOF
|
---|
| 31 | ) >> $MKFILE.tmp
|
---|
| 32 | }
|
---|
| 33 |
|
---|
| 34 |
|
---|
| 35 |
|
---|
| 36 | #----------------------------------#
|
---|
[c62275f6] | 37 | __write_build_cmd() { #
|
---|
[cace333e] | 38 | #----------------------------------#
|
---|
| 39 | (
|
---|
| 40 | cat << EOF
|
---|
[2fedf49] | 41 | @source ../envars.conf && ${BUILD_SCRIPTS}/\$@ >logs/\$@ 2>&1
|
---|
[cace333e] | 42 | EOF
|
---|
| 43 | ) >> $MKFILE.tmp
|
---|
| 44 | }
|
---|
| 45 |
|
---|
| 46 | #----------------------------------#
|
---|
| 47 | __wrt_touch() { #
|
---|
| 48 | #----------------------------------#
|
---|
[c62275f6] | 49 | local pkg_name=$1
|
---|
[b928382] | 50 | local pkg_ver=$2
|
---|
[5743d54] | 51 |
|
---|
| 52 | if [[ -n "$pkg_ver" ]] ; then
|
---|
| 53 | (
|
---|
| 54 | cat << EOF
|
---|
| 55 | @touch \$(TRACKING_DIR)/${pkg_name#*-?-}-${pkg_ver}
|
---|
| 56 | EOF
|
---|
| 57 | ) >> $MKFILE.tmp
|
---|
| 58 | fi
|
---|
| 59 |
|
---|
[cace333e] | 60 | (
|
---|
| 61 | cat << EOF
|
---|
| 62 | @touch \$@ && \\
|
---|
| 63 | sleep .25 && \\
|
---|
| 64 | echo -e "\n\n "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
|
---|
| 65 | echo --------------------------------------------------------------------------------\$(WHITE)
|
---|
| 66 | EOF
|
---|
| 67 | ) >> $MKFILE.tmp
|
---|
| 68 | }
|
---|
| 69 |
|
---|
| 70 |
|
---|
| 71 | #----------------------------#
|
---|
| 72 | __write_entry() { #
|
---|
| 73 | #----------------------------#
|
---|
[c62275f6] | 74 | local script_name=$1
|
---|
[b928382] | 75 | local pkg_ver=$2
|
---|
[5743d54] | 76 |
|
---|
[c62275f6] | 77 | echo -n "${tab_}${tab_} entry for <$script_name>"
|
---|
[cace333e] | 78 |
|
---|
| 79 | #--------------------------------------------------------------------#
|
---|
| 80 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
| 81 | #--------------------------------------------------------------------#
|
---|
| 82 | #
|
---|
| 83 | # Drop in the name of the target on a new line, and the previous target
|
---|
| 84 | # as a dependency. Also call the echo_message function.
|
---|
[c62275f6] | 85 | __wrt_target "${script_name}" "$PREV_PACKAGE"
|
---|
[d0d9e90] | 86 | __write_build_cmd
|
---|
[cace333e] | 87 |
|
---|
| 88 | # Include a touch of the target name so make can check
|
---|
| 89 | # if it's already been made.
|
---|
[b928382] | 90 | __wrt_touch "${script_name}" "${pkg_ver}"
|
---|
[cace333e] | 91 | #
|
---|
| 92 | #--------------------------------------------------------------------#
|
---|
| 93 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
| 94 | #--------------------------------------------------------------------#
|
---|
[c62275f6] | 95 | echo " .. OK"
|
---|
[cace333e] | 96 | }
|
---|
| 97 |
|
---|
| 98 | #----------------------------#
|
---|
| 99 | generate_Makefile () { #
|
---|
| 100 | #----------------------------#
|
---|
| 101 |
|
---|
| 102 |
|
---|
| 103 | echo "${tab_}Creating Makefile... ${BOLD}START${OFF}"
|
---|
| 104 |
|
---|
| 105 | # Start with a clean files
|
---|
| 106 | >$MKFILE
|
---|
| 107 | >$MKFILE.tmp
|
---|
| 108 |
|
---|
[d0d9e90] | 109 |
|
---|
[cace333e] | 110 | for package_script in scripts/* ; do
|
---|
| 111 | this_script=`basename $package_script`
|
---|
[5743d54] | 112 | pkg_ver=$(grep "^${this_script#*-?-}[[:space:]]" ../packages | cut -f3)
|
---|
[5f14bd3] | 113 | pkg_list="$pkg_list ${this_script}"
|
---|
| 114 | __write_entry "${this_script}" "${pkg_ver}"
|
---|
| 115 | PREV_PACKAGE=${this_script}
|
---|
[cace333e] | 116 | done
|
---|
| 117 |
|
---|
| 118 |
|
---|
| 119 | # Add a header, some variables and include the function file
|
---|
| 120 | # to the top of the real Makefile.
|
---|
| 121 | (
|
---|
| 122 | cat << EOF
|
---|
| 123 | $HEADER
|
---|
| 124 |
|
---|
[d0d9e90] | 125 | PACKAGE= "`basename $PWD`"
|
---|
[c62275f6] | 126 | TRACKING_DIR= $TRACKING_DIR
|
---|
[cace333e] | 127 |
|
---|
| 128 | BOLD= "[0;1m"
|
---|
| 129 | RED= "[1;31m"
|
---|
| 130 | GREEN= "[0;32m"
|
---|
| 131 | ORANGE= "[0;33m"
|
---|
| 132 | BLUE= "[1;34m"
|
---|
| 133 | WHITE= "[00m"
|
---|
| 134 |
|
---|
| 135 | define echo_message
|
---|
| 136 | @echo \$(BOLD)
|
---|
| 137 | @echo --------------------------------------------------------------------------------
|
---|
| 138 | @echo \$(BOLD)\$(1) target \$(BLUE)\$@\$(BOLD)
|
---|
| 139 | @echo \$(WHITE)
|
---|
| 140 | endef
|
---|
| 141 |
|
---|
| 142 |
|
---|
[5d93cec] | 143 | define fin_message
|
---|
| 144 | @echo \$(BOLD)
|
---|
| 145 | @echo --------------------------------------------------------------------------------
|
---|
| 146 | @echo \$(BOLD) Build complete for the package \$(BLUE)\$(PACKAGE)\$(BOLD) and its dependencies
|
---|
| 147 | @echo \$(WHITE)
|
---|
| 148 | endef
|
---|
| 149 |
|
---|
| 150 | all : $pkg_list
|
---|
| 151 | @\$(call fin_message )
|
---|
[cace333e] | 152 | EOF
|
---|
| 153 | ) > $MKFILE
|
---|
| 154 |
|
---|
| 155 | cat $MKFILE.tmp >> $MKFILE
|
---|
| 156 | echo "${tab_}Creating Makefile... ${BOLD}DONE${OFF}"
|
---|
| 157 |
|
---|
[c62275f6] | 158 | rm $MKFILE.tmp
|
---|
| 159 |
|
---|
[cace333e] | 160 | }
|
---|
[d0d9e90] | 161 |
|
---|
| 162 | generate_Makefile
|
---|
| 163 |
|
---|
| 164 | cp ../progress_bar.sh .
|
---|
| 165 |
|
---|
| 166 | mkdir -p logs
|
---|