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