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 | cat << EOF
|
---|
55 | @touch \$@ && \\
|
---|
56 | touch \$(TRACKING_DIR)/${pkg_name#*-?-}-${pkg_ver} && \\
|
---|
57 | sleep .25 && \\
|
---|
58 | echo -e "\n\n "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK && \\
|
---|
59 | echo --------------------------------------------------------------------------------\$(WHITE)
|
---|
60 | EOF
|
---|
61 | ) >> $MKFILE.tmp
|
---|
62 | }
|
---|
63 |
|
---|
64 |
|
---|
65 | #----------------------------#
|
---|
66 | __write_entry() { #
|
---|
67 | #----------------------------#
|
---|
68 | local script_name=$1
|
---|
69 | local pkg_ver=$2
|
---|
70 |
|
---|
71 | echo -n "${tab_}${tab_} entry for <$script_name>"
|
---|
72 |
|
---|
73 | #--------------------------------------------------------------------#
|
---|
74 | # >>>>>>>> START BUILDING A Makefile ENTRY <<<<<<<< #
|
---|
75 | #--------------------------------------------------------------------#
|
---|
76 | #
|
---|
77 | # Drop in the name of the target on a new line, and the previous target
|
---|
78 | # as a dependency. Also call the echo_message function.
|
---|
79 | __wrt_target "${script_name}" "$PREV_PACKAGE"
|
---|
80 | __write_build_cmd
|
---|
81 |
|
---|
82 | # Include a touch of the target name so make can check
|
---|
83 | # if it's already been made.
|
---|
84 | __wrt_touch "${script_name}" "${pkg_ver}"
|
---|
85 | #
|
---|
86 | #--------------------------------------------------------------------#
|
---|
87 | # >>>>>>>> END OF Makefile ENTRY <<<<<<<< #
|
---|
88 | #--------------------------------------------------------------------#
|
---|
89 | echo " .. OK"
|
---|
90 | }
|
---|
91 |
|
---|
92 | #----------------------------#
|
---|
93 | generate_Makefile () { #
|
---|
94 | #----------------------------#
|
---|
95 |
|
---|
96 |
|
---|
97 | echo "${tab_}Creating Makefile... ${BOLD}START${OFF}"
|
---|
98 |
|
---|
99 | # Start with a clean files
|
---|
100 | >$MKFILE
|
---|
101 | >$MKFILE.tmp
|
---|
102 |
|
---|
103 |
|
---|
104 | for package_script in scripts/* ; do
|
---|
105 | this_script=`basename $package_script`
|
---|
106 | script_ver=$(xmllint --noent ../blfs-xml/book/bookinfo.xml 2>/dev/null | \
|
---|
107 | grep -i " ${this_script#*-?-}-version " | \
|
---|
108 | cut -d "\"" -f2 )
|
---|
109 | if [ ! -e $TRACKING_DIR/${this_script#*-?-}-$script_ver ]; then
|
---|
110 | pkg_list="$pkg_list ${this_script}"
|
---|
111 | __write_entry "${this_script}" "${script_ver}"
|
---|
112 | PREV_PACKAGE=${this_script}
|
---|
113 | fi
|
---|
114 | done
|
---|
115 |
|
---|
116 |
|
---|
117 | # Add a header, some variables and include the function file
|
---|
118 | # to the top of the real Makefile.
|
---|
119 | (
|
---|
120 | cat << EOF
|
---|
121 | $HEADER
|
---|
122 |
|
---|
123 | PACKAGE= "`basename $PWD`"
|
---|
124 | TRACKING_DIR= $TRACKING_DIR
|
---|
125 |
|
---|
126 | BOLD= "[0;1m"
|
---|
127 | RED= "[1;31m"
|
---|
128 | GREEN= "[0;32m"
|
---|
129 | ORANGE= "[0;33m"
|
---|
130 | BLUE= "[1;34m"
|
---|
131 | WHITE= "[00m"
|
---|
132 |
|
---|
133 | define echo_message
|
---|
134 | @echo \$(BOLD)
|
---|
135 | @echo --------------------------------------------------------------------------------
|
---|
136 | @echo \$(BOLD)\$(1) target \$(BLUE)\$@\$(BOLD)
|
---|
137 | @echo \$(WHITE)
|
---|
138 | endef
|
---|
139 |
|
---|
140 |
|
---|
141 | define fin_message
|
---|
142 | @echo \$(BOLD)
|
---|
143 | @echo --------------------------------------------------------------------------------
|
---|
144 | @echo \$(BOLD) Build complete for the package \$(BLUE)\$(PACKAGE)\$(BOLD) and its dependencies
|
---|
145 | @echo \$(WHITE)
|
---|
146 | endef
|
---|
147 |
|
---|
148 | all : $pkg_list
|
---|
149 | @\$(call fin_message )
|
---|
150 | EOF
|
---|
151 | ) > $MKFILE
|
---|
152 |
|
---|
153 | cat $MKFILE.tmp >> $MKFILE
|
---|
154 | echo "${tab_}Creating Makefile... ${BOLD}DONE${OFF}"
|
---|
155 |
|
---|
156 | rm $MKFILE.tmp
|
---|
157 |
|
---|
158 | }
|
---|
159 |
|
---|
160 | generate_Makefile
|
---|
161 |
|
---|
162 | cp ../progress_bar.sh .
|
---|
163 |
|
---|
164 | mkdir -p logs
|
---|