[877cc6a] | 1 | #!/bin/bash
|
---|
| 2 | # $Id$
|
---|
| 3 | set -e
|
---|
| 4 |
|
---|
| 5 |
|
---|
| 6 | #>>>>>>>>>>>>>>>ERROR TRAPPING >>>>>>>>>>>>>>>>>>>>
|
---|
| 7 | #-----------------------#
|
---|
| 8 | simple_error() { # Basic error trap.... JUST DIE
|
---|
| 9 | #-----------------------#
|
---|
| 10 | # If +e then disable text output
|
---|
| 11 | if [[ "$-" =~ "e" ]]; then
|
---|
| 12 | echo -e "\n${RED}ERROR:${GREEN} basic error trapped!${OFF}\n" >&2
|
---|
| 13 | fi
|
---|
| 14 | }
|
---|
| 15 |
|
---|
| 16 | see_ya() {
|
---|
| 17 | echo -e "\n\t${BOLD}Goodbye and thank you for choosing ${L_arrow}jhalfs-X${R_arrow}\n"
|
---|
| 18 | }
|
---|
| 19 | ##### Simple error TRAPS
|
---|
| 20 | # ctrl-c SIGINT
|
---|
| 21 | # ctrl-y
|
---|
| 22 | # ctrl-z SIGTSTP
|
---|
| 23 | # SIGHUP 1 HANGUP
|
---|
| 24 | # SIGINT 2 INTRERRUPT FROM KEYBOARD Ctrl-C
|
---|
| 25 | # SIGQUIT 3
|
---|
| 26 | # SIGKILL 9 KILL
|
---|
| 27 | # SIGTERM 15 TERMINATION
|
---|
| 28 | # SIGSTOP 17,18,23 STOP THE PROCESS
|
---|
| 29 | #####
|
---|
| 30 | set -e
|
---|
| 31 | trap see_ya 0
|
---|
| 32 | trap simple_error ERR
|
---|
| 33 | trap 'echo -e "\n\n${RED}INTERRUPT${OFF} trapped\n" && exit 2' 1 2 3 15 17 18 23
|
---|
| 34 | #>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
---|
| 35 |
|
---|
| 36 |
|
---|
| 37 | if [ ! -L $0 ] ; then
|
---|
| 38 | echo "${nl_}${tab_}${BOLD}${RED}This script cannot be called directly: EXITING ${OFF}${nl_}"
|
---|
| 39 | exit 1
|
---|
| 40 | fi
|
---|
| 41 |
|
---|
| 42 | PROGNAME=$(basename $0)
|
---|
| 43 | COMMON_DIR="common"
|
---|
| 44 | PACKAGE_DIR=$(echo $PROGNAME | tr [a-z] [A-Z])
|
---|
| 45 | MODULE=$PACKAGE_DIR/master.sh
|
---|
| 46 | MODULE_CONFIG=$PACKAGE_DIR/config
|
---|
| 47 | VERBOSITY=0
|
---|
| 48 |
|
---|
| 49 | [[ $VERBOSITY > 0 ]] && echo -n "Loading common-functions module..."
|
---|
| 50 | source $COMMON_DIR/common-functions
|
---|
| 51 | [[ $? > 0 ]] && echo " $COMMON_DIR/common-functions did not load.." && exit
|
---|
| 52 | [[ $VERBOSITY > 0 ]] && echo "OK"
|
---|
| 53 | #
|
---|
| 54 |
|
---|
| 55 | [[ $VERBOSITY > 0 ]] && echo -n "Loading masterscript conf..."
|
---|
| 56 | source $COMMON_DIR/config
|
---|
| 57 | [[ $? > 0 ]] && echo "$COMMON_DIR/conf did not load.." && exit
|
---|
| 58 | [[ $VERBOSITY > 0 ]] && echo "OK"
|
---|
| 59 | #
|
---|
| 60 | [[ $VERBOSITY > 0 ]] && echo -n "Loading config module <$MODULE_CONFIG>..."
|
---|
| 61 | source $MODULE_CONFIG
|
---|
| 62 | [[ $? > 0 ]] && echo "$MODULE_CONFIG did not load.." && exit 1
|
---|
| 63 | [[ $VERBOSITY > 0 ]] && echo "OK"
|
---|
| 64 | #
|
---|
| 65 | [[ $VERBOSITY > 0 ]] && echo -n "Loading code module <$MODULE>..."
|
---|
| 66 | source $MODULE
|
---|
| 67 | [[ $? > 0 ]] && echo "$MODULE did not load.." && exit 2
|
---|
| 68 | [[ $VERBOSITY > 0 ]] && echo "OK"
|
---|
| 69 | #
|
---|
| 70 | [[ $VERBOSITY > 0 ]] && echo "---------------${nl_}"
|
---|
| 71 |
|
---|
| 72 |
|
---|
| 73 | #===========================================================
|
---|
| 74 | # If the var BOOK contains something then, maybe, it points
|
---|
| 75 | # to a working doc.. set WC=1, else 'null'
|
---|
| 76 | #===========================================================
|
---|
| 77 | WC=${BOOK:+1}
|
---|
| 78 | #===========================================================
|
---|
| 79 |
|
---|
| 80 |
|
---|
| 81 | #*******************************************************************#
|
---|
| 82 | [[ $VERBOSITY > 0 ]] && echo -n "Loading function <func_check_version.sh>..."
|
---|
| 83 | source $COMMON_DIR/func_check_version.sh
|
---|
| 84 | [[ $? > 0 ]] && echo " function module did not load.." && exit 2
|
---|
| 85 | [[ $VERBOSITY > 0 ]] && echo "OK"
|
---|
| 86 |
|
---|
| 87 | [[ $VERBOSITY > 0 ]] && echo -n "Loading function <func_validate_configs.sh>..."
|
---|
| 88 | source $COMMON_DIR/func_validate_configs.sh
|
---|
| 89 | [[ $? > 0 ]] && echo " function module did not load.." && exit 2
|
---|
| 90 | [[ $VERBOSITY > 0 ]] && echo "OK"
|
---|
| 91 | [[ $VERBOSITY > 0 ]] && echo "---------------${nl_}"
|
---|
| 92 |
|
---|
| 93 |
|
---|
| 94 | ###################################
|
---|
| 95 | ### MAIN ###
|
---|
| 96 | ###################################
|
---|
| 97 |
|
---|
| 98 | # Evaluate any command line switches
|
---|
| 99 |
|
---|
| 100 | while test $# -gt 0 ; do
|
---|
| 101 | case $1 in
|
---|
| 102 | # Common options for all books
|
---|
| 103 | --book | -B )
|
---|
| 104 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 105 | shift
|
---|
| 106 | case $1 in
|
---|
| 107 | dev* | SVN | trunk )
|
---|
| 108 | LFSVRS=development
|
---|
| 109 | ;;
|
---|
| 110 | *) if [[ "$PROGNAME" = "lfs" ]]; then
|
---|
| 111 | case $1 in
|
---|
| 112 | 6.1.1 )
|
---|
| 113 | echo "For stable 6.1.1 book, please use jhalfs-0.2."
|
---|
| 114 | exit 0
|
---|
| 115 | ;;
|
---|
| 116 | alpha*) LFSVRS=alphabetical ;;
|
---|
| 117 | udev*) LFSVRS=udev_update ;;
|
---|
| 118 | * ) echo "$1 is an unsupported version at this time." ;;
|
---|
| 119 | esac
|
---|
| 120 | else
|
---|
| 121 | echo "The requested version, ${L_arrow} ${BOLD}$1${OFF} ${R_arrow}, is undefined in the ${BOLD}$(echo $PROGNAME | tr [a-z] [A-Z])${OFF} series."
|
---|
| 122 | exit 0
|
---|
| 123 | fi
|
---|
| 124 | ;;
|
---|
| 125 | esac
|
---|
| 126 | ;;
|
---|
| 127 |
|
---|
| 128 | --directory | -D )
|
---|
| 129 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 130 | shift
|
---|
| 131 | case $1 in
|
---|
| 132 | -* )
|
---|
| 133 | echo -e "\n$1 isn't a valid build directory."
|
---|
| 134 | echo -e "Directory names can't start with - .\n"
|
---|
| 135 | exit 1
|
---|
| 136 | ;;
|
---|
| 137 | * )
|
---|
| 138 | BUILDDIR=$1
|
---|
| 139 | JHALFSDIR=$BUILDDIR/jhalfs
|
---|
| 140 | LOGDIR=$JHALFSDIR/logs
|
---|
| 141 | MKFILE=$JHALFSDIR/Makefile
|
---|
| 142 | ;;
|
---|
| 143 | esac
|
---|
| 144 | ;;
|
---|
| 145 |
|
---|
| 146 | --get-packages | -G ) HPKG=1 ;;
|
---|
| 147 |
|
---|
| 148 | --help | -h ) usage | more && exit ;;
|
---|
| 149 |
|
---|
| 150 | --testsuites | -T )
|
---|
| 151 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 152 | shift
|
---|
| 153 | case $1 in
|
---|
| 154 | 0 | 1 | 2 | 3 )
|
---|
| 155 | TEST=$1
|
---|
| 156 | ;;
|
---|
| 157 | * )
|
---|
| 158 | echo -e "\n$1 isn't a valid testsuites level value."
|
---|
| 159 | echo -e "You must to use 0, 1, 2, or 3.\n"
|
---|
| 160 | exit 1
|
---|
| 161 | ;;
|
---|
| 162 | esac
|
---|
| 163 | ;;
|
---|
| 164 |
|
---|
| 165 | --version | -V )
|
---|
| 166 | echo "$version"
|
---|
| 167 | exit 0
|
---|
| 168 | ;;
|
---|
| 169 |
|
---|
| 170 | --working-copy | -W )
|
---|
| 171 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 172 | shift
|
---|
| 173 | case $PROGNAME in # Poor checks. We should find better ones.
|
---|
| 174 | lfs)
|
---|
| 175 | if [ -f $1/patches.ent ] ; then
|
---|
| 176 | WC=1
|
---|
| 177 | BOOK=$1
|
---|
| 178 | else
|
---|
| 179 | echo -e "\nLooks like $1 isn't a LFS working copy."
|
---|
| 180 | exit 1
|
---|
| 181 | fi
|
---|
| 182 | ;;
|
---|
| 183 | clfs)
|
---|
| 184 | if [ -f $1/patches.ent ] && [ -f $1/packages.ent ]; then
|
---|
| 185 | WC=1
|
---|
| 186 | BOOK=$1
|
---|
| 187 | else
|
---|
| 188 | echo -e "\nLooks like $1 isn't a CLFS working copy."
|
---|
| 189 | exit 1
|
---|
| 190 | fi
|
---|
| 191 | ;;
|
---|
| 192 | hlfs)
|
---|
| 193 | if [ -f $1/template.xml ] ; then
|
---|
| 194 | WC=1
|
---|
| 195 | BOOK=$1
|
---|
| 196 | else
|
---|
| 197 | echo -e "\nLooks like $1 isn't a HLFS working copy."
|
---|
| 198 | exit 1
|
---|
| 199 | fi
|
---|
| 200 | ;;
|
---|
| 201 | blfs)
|
---|
| 202 | if [ -f $1/use-unzip.xml ] ; then
|
---|
| 203 | WC=1
|
---|
| 204 | BOOK=$1
|
---|
| 205 | else
|
---|
| 206 | echo -e "\nLooks like $1 isn't a BLFS working copy."
|
---|
| 207 | exit 1
|
---|
| 208 | fi
|
---|
| 209 | ;;
|
---|
| 210 | esac
|
---|
| 211 | ;;
|
---|
| 212 |
|
---|
| 213 | # Common options for LFS, CLFS and HLFS
|
---|
| 214 | --fstab | -F )
|
---|
| 215 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 216 | shift
|
---|
| 217 | if [ -f $1 ] ; then
|
---|
| 218 | FSTAB=$1
|
---|
| 219 | else
|
---|
| 220 | echo -e "\nFile $1 not found. Verify your command line.\n"
|
---|
| 221 | exit 1
|
---|
| 222 | fi
|
---|
| 223 | ;;
|
---|
| 224 |
|
---|
| 225 | --kernel-config | -K )
|
---|
| 226 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 227 | shift
|
---|
| 228 | if [ -f $1 ] ; then
|
---|
| 229 | CONFIG=$1
|
---|
| 230 | else
|
---|
| 231 | echo -e "\nFile $1 not found. Verify your command line.\n"
|
---|
| 232 | exit 1
|
---|
| 233 | fi
|
---|
| 234 | ;;
|
---|
| 235 |
|
---|
| 236 | --make | -M ) RUNMAKE=1 ;;
|
---|
| 237 |
|
---|
| 238 | --rebuild | -R ) CLEAN=1 ;;
|
---|
| 239 |
|
---|
| 240 | # CLFS options
|
---|
| 241 | --arch | -A )
|
---|
| 242 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 243 | shift
|
---|
| 244 | case $1 in
|
---|
| 245 | x86 )
|
---|
| 246 | ARCH=x86
|
---|
| 247 | TARGET="i686-pc-linux-gnu"
|
---|
| 248 | ;;
|
---|
| 249 | i486 )
|
---|
| 250 | ARCH=x86
|
---|
| 251 | TARGET="i486-pc-linux-gnu"
|
---|
| 252 | ;;
|
---|
| 253 | i586 )
|
---|
| 254 | ARCH=x86
|
---|
| 255 | TARGET="i586-pc-linux-gnu"
|
---|
| 256 | ;;
|
---|
| 257 | ppc )
|
---|
| 258 | ARCH=ppc
|
---|
| 259 | TARGET="powerpc-unknown-linux-gnu"
|
---|
| 260 | ;;
|
---|
| 261 | mips )
|
---|
| 262 | ARCH=mips
|
---|
| 263 | TARGET="mips-unknown-linux-gnu"
|
---|
| 264 | ;;
|
---|
| 265 | mipsel )
|
---|
| 266 | ARCH=mips
|
---|
| 267 | TARGET="mipsel-unknown-linux-gnu"
|
---|
| 268 | ;;
|
---|
| 269 | sparc )
|
---|
| 270 | ARCH=sparc
|
---|
| 271 | TARGET="sparcv9-unknown-linux-gnu"
|
---|
| 272 | ;;
|
---|
| 273 | sparcv8 )
|
---|
| 274 | ARCH=sparcv8
|
---|
| 275 | TARGET="sparc-unknown-linux-gnu"
|
---|
| 276 | ;;
|
---|
| 277 | x86_64-64 )
|
---|
| 278 | ARCH=x86_64-64
|
---|
| 279 | TARGET="x86_64-unknown-linux-gnu"
|
---|
| 280 | ;;
|
---|
| 281 | mips64-64 )
|
---|
| 282 | ARCH=mips64-64
|
---|
| 283 | TARGET="mips-unknown-linux-gnu"
|
---|
| 284 | ;;
|
---|
| 285 | mipsel64-64 )
|
---|
| 286 | ARCH=mips64-64
|
---|
| 287 | TARGET="mipsel-unknown-linux-gnu"
|
---|
| 288 | ;;
|
---|
| 289 | sparc64-64 )
|
---|
| 290 | ARCH=sparc64-64
|
---|
| 291 | TARGET="sparc64-unknown-linux-gnu"
|
---|
| 292 | ;;
|
---|
| 293 | alpha )
|
---|
| 294 | ARCH=alpha
|
---|
| 295 | TARGET="alpha-unknown-linux-gnu"
|
---|
| 296 | ;;
|
---|
| 297 | x86_64 )
|
---|
| 298 | ARCH=x86_64
|
---|
| 299 | TARGET="x86_64-unknown-linux-gnu"
|
---|
| 300 | TARGET32="i686-pc-linux-gnu"
|
---|
| 301 | ;;
|
---|
| 302 | mips64 )
|
---|
| 303 | ARCH=mips64
|
---|
| 304 | TARGET="mips-unknown-linux-gnu"
|
---|
| 305 | TARGET32="mips-unknown-linux-gnu"
|
---|
| 306 | ;;
|
---|
| 307 | mipsel64 )
|
---|
| 308 | ARCH=mips64
|
---|
| 309 | TARGET="mipsel-unknown-linux-gnu"
|
---|
| 310 | TARGET32="mipsel-unknown-linux-gnu"
|
---|
| 311 | ;;
|
---|
| 312 | sparc64 )
|
---|
| 313 | ARCH=sparc64
|
---|
| 314 | TARGET="sparc64-unknown-linux-gnu"
|
---|
| 315 | TARGET32="sparcv9-unknown-linux-gnu"
|
---|
| 316 | ;;
|
---|
| 317 | ppc64 )
|
---|
| 318 | ARCH=ppc64
|
---|
| 319 | TARGET="powerpc64-unknown-linux-gnu"
|
---|
| 320 | TARGET32="powerpc-unknown-linux-gnu"
|
---|
| 321 | ;;
|
---|
| 322 | * )
|
---|
| 323 | echo -e "\n$1 is an unknown or unsopported arch."
|
---|
| 324 | exit 1
|
---|
| 325 | ;;
|
---|
| 326 | esac
|
---|
| 327 | ;;
|
---|
| 328 |
|
---|
| 329 | --boot-config )
|
---|
| 330 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 331 | shift
|
---|
| 332 | if [ -f $1 ] ; then
|
---|
| 333 | BOOT_CONFIG=$1
|
---|
| 334 | else
|
---|
| 335 | echo -e "\nFile $1 not found. Verify your command line.\n"
|
---|
| 336 | exit 1
|
---|
| 337 | fi
|
---|
| 338 | ;;
|
---|
| 339 |
|
---|
| 340 | --method )
|
---|
| 341 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 342 | shift
|
---|
| 343 | case $1 in
|
---|
| 344 | chroot | boot )
|
---|
| 345 | METHOD=$1
|
---|
| 346 | ;;
|
---|
| 347 | * )
|
---|
| 348 | echo -e "\n$1 isn't a valid build method."
|
---|
| 349 | exit 1
|
---|
| 350 | ;;
|
---|
| 351 | esac
|
---|
| 352 | ;;
|
---|
| 353 |
|
---|
| 354 | # HLFS options
|
---|
| 355 | --model )
|
---|
| 356 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 357 | shift
|
---|
| 358 | case $1 in
|
---|
| 359 | glibc | uclibc )
|
---|
| 360 | MODEL=$1
|
---|
| 361 | ;;
|
---|
| 362 | * )
|
---|
| 363 | echo -e "\n$1 isn't a valid libc model."
|
---|
| 364 | exit 1
|
---|
| 365 | ;;
|
---|
| 366 | esac
|
---|
| 367 | ;;
|
---|
| 368 |
|
---|
| 369 | # BLFS options
|
---|
| 370 | --dependencies )
|
---|
| 371 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 372 | shift
|
---|
| 373 | case $1 in
|
---|
| 374 | 0 | 1 | 2 )
|
---|
| 375 | DEPEND=$1
|
---|
| 376 | ;;
|
---|
| 377 | * )
|
---|
| 378 | echo -e "\n$1 isn't a valid dependencies level."
|
---|
| 379 | exit 1
|
---|
| 380 | ;;
|
---|
| 381 | esac
|
---|
| 382 | ;;
|
---|
| 383 |
|
---|
| 384 | # Unknown options
|
---|
| 385 | * ) usage ;;
|
---|
| 386 | esac
|
---|
| 387 | shift
|
---|
| 388 | done
|
---|
| 389 |
|
---|
| 390 | # Find the download client to use, if not already specified.
|
---|
| 391 |
|
---|
| 392 | if [ -z $DL ] ; then
|
---|
| 393 | if [ `type -p wget` ] ; then
|
---|
| 394 | DL=wget
|
---|
| 395 | elif [ `type -p curl` ] ; then
|
---|
| 396 | DL=curl
|
---|
| 397 | else
|
---|
| 398 | eval "$no_dl_client"
|
---|
| 399 | fi
|
---|
| 400 | fi
|
---|
| 401 |
|
---|
| 402 | #===================================================
|
---|
| 403 | # Set the document location...
|
---|
| 404 | # BOOK is either defined in
|
---|
| 405 | # xxx.config
|
---|
| 406 | # comand line
|
---|
| 407 | # default
|
---|
| 408 | # If set by conf file or cmd line leave it
|
---|
| 409 | # alone otherwise load the default version
|
---|
| 410 | #===================================================
|
---|
| 411 | BOOK=${BOOK:=$PROGNAME-$LFSVRS}
|
---|
| 412 | #===================================================
|
---|
| 413 |
|
---|
| 414 |
|
---|
| 415 | # Check for minumum gcc and kernel versions
|
---|
| 416 | #check_requirements 1 # 0/1 0-do not display values.
|
---|
| 417 | echo
|
---|
| 418 | check_version "2.6.2" "`uname -r`" "KERNEL"
|
---|
| 419 | check_version "3.0" "$BASH_VERSION" "BASH"
|
---|
| 420 | check_version "3.0" "`gcc -dumpversion`" "GCC"
|
---|
| 421 | tarVer=`tar --version`
|
---|
| 422 | check_version "1.15.0" "${tarVer##* }" "TAR"
|
---|
| 423 | echo "---------------${nl_}"
|
---|
| 424 |
|
---|
| 425 | validate_config
|
---|
| 426 | echo "---------------${nl_}"
|
---|
| 427 |
|
---|
| 428 | echo -n "Are you happy with these settings? yes/no (no): "
|
---|
| 429 | read ANSWER
|
---|
| 430 | if [ x$ANSWER != "xyes" ] ; then
|
---|
| 431 | echo "${nl_}Fix the configuration options and rerun the script.${nl_}"
|
---|
| 432 | exit 1
|
---|
| 433 | fi
|
---|
| 434 | echo "${nl_}---------------${nl_}"
|
---|
| 435 |
|
---|
| 436 | # Prevents setting "-d /" by mistake.
|
---|
| 437 |
|
---|
| 438 | if [ $BUILDDIR = / ] ; then
|
---|
| 439 | echo -ne "\nThe root directory can't be used to build LFS.\n\n"
|
---|
| 440 | exit 1
|
---|
| 441 | fi
|
---|
| 442 |
|
---|
| 443 | # If $BUILDDIR has subdirectories like tools/ or bin/, stop the run
|
---|
| 444 | # and notify the user about that.
|
---|
| 445 |
|
---|
| 446 | if [ -d $BUILDDIR/tools -o -d $BUILDDIR/bin ] && [ -z $CLEAN ] ; then
|
---|
| 447 | eval "$no_empty_builddir"
|
---|
| 448 | fi
|
---|
| 449 |
|
---|
| 450 | # If requested, clean the build directory
|
---|
| 451 | clean_builddir
|
---|
| 452 |
|
---|
| 453 | if [[ ! -d $JHALFSDIR ]]; then
|
---|
| 454 | mkdir -p $JHALFSDIR
|
---|
| 455 | fi
|
---|
| 456 |
|
---|
| 457 | if [[ "$PWD" != "$JHALFSDIR" ]]; then
|
---|
| 458 | cp $COMMON_DIR/makefile-functions $JHALFSDIR/
|
---|
| 459 | if [[ -n "$FILES" ]]; then
|
---|
| 460 | # pushd/popd necessary to deal with mulitiple files
|
---|
| 461 | pushd $PACKAGE_DIR 1> /dev/null
|
---|
| 462 | cp $FILES $JHALFSDIR/
|
---|
| 463 | popd 1> /dev/null
|
---|
| 464 | fi
|
---|
| 465 | sed 's,FAKEDIR,'$BOOK',' $PACKAGE_DIR/$XSL > $JHALFSDIR/${XSL}
|
---|
| 466 | export XSL=$JHALFSDIR/${XSL}
|
---|
| 467 | fi
|
---|
| 468 |
|
---|
| 469 | if [[ ! -d $LOGDIR ]]; then
|
---|
| 470 | mkdir $LOGDIR
|
---|
| 471 | fi
|
---|
| 472 | >$LOGDIR/$LOG
|
---|
| 473 |
|
---|
| 474 | get_book
|
---|
| 475 | echo "---------------${nl_}"
|
---|
| 476 |
|
---|
| 477 | build_Makefile
|
---|
| 478 | echo "---------------${nl_}"
|
---|
| 479 |
|
---|
| 480 | run_make
|
---|
| 481 |
|
---|