6 # boot-strap ["options"]
7 # boot-strap --prefix=/opt --install
8 # boot-strap --prefix=$HOME --install-host-target -DWITH_PROG_VERSION
9 # boot-strap ["options"] op=build
10 # boot-strap ["options"] op=install
13 # This script is used to configure/build bmake it builds for
14 # each host-target in a different subdir to keep the src clean.
15 # There is no requirement for an existing make(1).
17 # On successful completion if no '--install' flag is given,
18 # it echos a command to do installation.
20 # The variable "op" defaults to 'all', and is affected by
21 # '--install' flag as above.
22 # Other values include:
25 # Just run 'configure'
28 # If 'configure' has not been done, do it, then
29 # run the build script, and finally 'test'.
32 # If 'build' has not been done, do it, 'test' then
39 # run the unit-tests. Done automatically after 'build'
40 # and before 'install'.
42 # The above are leveraged by a trivial makefile for the benefit
43 # of those that have './configure; make; make install' baked
49 # Pick up settings from "rc".
50 # We look for '.bmake-boot-strap.rc' before processing
51 # options (unless SKIP_RC is set in environment).
54 # Where to put man pages and mk files.
55 # If $prefix ends in $HOST_TARGET, and $prefix/../share
56 # exits, the default will be that rather than $prefix/share.
59 # Indicate where the mk files can be found.
60 # Default is $Mydir/mk
63 # If build and test work, run bmake install.
65 # SHAREDIR=$prefix/share
67 # --install-host-target
68 # As for '--install' but BINDIR=$prefix/$HOST_TARGET/bin
69 # This is useful when $prefix/ is shared by multiple
72 # Flags relevant when installing:
74 # -DWITHOUT_INSTALL_MK
75 # Skip installing mk files.
76 # By default they will be installed to $prefix/share/mk
79 # Install 'bmake' as 'bmake-$MAKE_VERSION'
80 # A symlink will be made as 'bmake' unless
81 # -DWITHOUT_PROG_LINK is set.
83 # Possibly useful configure_args:
86 # disable use of meta mode.
89 # disable use of filemon(9) which is currently only
90 # available for NetBSD and FreeBSD.
92 # --with-filemon="path/to/filemon.h"
93 # enables use of filemon(9) by meta mode.
95 # --with-machine="machine"
96 # set "machine" to override that determined by
99 # --with-force-machine="machine"
100 # force "machine" even if uname(3) provides a value.
102 # --with-machine_arch="machine_arch"
103 # set "machine_arch" to override that determined by
106 # --with-default-sys-path="syspath"
107 # set an explicit default "syspath" which is where bmake
108 # will look for sys.mk and friends.
111 # Simon J. Gerraty <sjg@crufty.net>
114 # $Id: boot-strap,v 1.45 2014/04/05 22:56:54 sjg Exp $
116 # @(#) Copyright (c) 2001 Simon J. Gerraty
118 # This file is provided in the hope that it will
119 # be of use. There is absolutely NO WARRANTY.
120 # Permission to copy, redistribute or otherwise
121 # use this file is hereby granted provided that
122 # the above copyright notice and this notice are
125 # Please send copies of changes and bug-fixes to:
133 *) Mydir=`cd "$Mydir" && 'pwd'`;;
137 [ "$1" ] && echo "ERROR: $@" >&2
139 echo "$0 [--<configure_arg> ...][<prefix>][--install]" >&2
153 [ -f "$r" -a -s "$r" ] || continue
154 echo "NOTE: reading $r"
162 # clear some things from the environment that we care about
163 unset MAKEOBJDIR MAKEOBJDIRPREFIX
165 # --install[-host-target] will set this
167 # other things we pass to install step
171 # pick a useful default prefix (for me at least ;-)
172 for prefix in /opt/$HOST_TARGET "$HOME/$HOST_TARGET" /usr/pkg /usr/local ""
174 [ -d "${prefix:-.}" ] || continue
178 if [ -d $p/share ]; then
179 INSTALL_BIN=$HOST_TARGET/bin
184 echo "NOTE: default prefix=$prefix ${INSTALL_BIN:+INSTALL_BIN=$INSTALL_BIN}"
192 ${SKIP_RC:+:} source_rc .bmake-boot-strap.rc . "$Mydir/.." "$HOME"
195 expr "x$1" : "x[^=]*=\\(.*\\)"
199 if [ $here = $Mydir ]; then
211 --help) sed -n -e "1d;/RCSid/,\$d" -e '/^#\.[a-z]/d' -e '/^#/s,^# *,,p' $0; exit 0;;
212 --prefix) prefix="$2"; shift;;
213 --prefix=*) prefix=`get_optarg "$1"`;;
214 --src=*) srcdir=`get_optarg "$1"`;;
215 --with-mksrc=*|--mksrc=*) mksrc=`get_optarg "$1"`;;
216 --share=*) share_dir=`get_optarg "$1"`;;
217 --share) share_dir="$2"; shift;;
218 --with-default-sys-path=*)
219 CONFIGURE_ARGS="$1";;
220 --with-default-sys-path)
221 CONFIGURE_ARGS="$1 $2";;
222 --install) INSTALL_PREFIX=${INSTALL_PREFIX:-$prefix};;
223 --install-host-target)
224 INSTALL_PREFIX=${INSTALL_PREFIX:-$prefix}
225 INSTALL_BIN=$HOST_TARGET/bin;;
226 --install-destdir=*) INSTALL_DESTDIR=`get_optarg "$1"`;;
227 --install-prefix=*) INSTALL_PREFIX=`get_optarg "$1"`;;
228 -DWITH*) INSTALL_ARGS="$INSTALL_ARGS $1";;
229 -s|--src) srcdir="$2"; shift;;
230 -m|--mksrc) mksrc="$2"; shift;;
231 -o|--objdir) objdir="$2"; shift;;
233 -c) source_rc "$2"; shift;;
234 --*) CONFIGURE_ARGS="$CONFIGURE_ARGS $1";;
235 *=*) eval "$1"; export `expr "x$1" : "x\\(.[^=]*\\)=.*"`;;
242 case " $CONFIGURE_ARGS " in
244 *) CONFIGURE_ARGS="$CONFIGURE_ARGS $1$2";;
255 [ -d "$dir" ] || continue
262 *) [ -s $dir/$fmatch ] || continue;;
265 *./*) cd "$dir" && 'pwd';;
267 *) cd "$dir" && 'pwd';;
279 -C) cd "$2"; shift; shift;;
285 /*) # we shouldn't be here
286 [ $_t "$1" ] && echo "$1"
289 .../*) want=`echo "$1" | sed 's,^.../*,,'`;;
295 if [ $_t "./$want" ]; then
308 # is $1 missing from $2 (or PATH) ?
310 eval "__p=\$${2:-PATH}"
311 case ":$__p:" in *:"$1":*) return 1;; *) return 0;; esac
314 # if $1 exists and is not in path, append it
321 MAKESYSPATH,.../*) ;;
322 *) [ $t ${1:-.} ] || return;;
324 no_path $* && eval ${2:-PATH}="$__p${__p:+:}$1"
328 srcdir=`GetDir /bmake make-bootstrap.sh.in "$srcdir" "$2" "$Mydir" ./bmake* "$Mydir"/../bmake*`
329 [ -d "${srcdir:-/dev/null}" ] || Usage
331 none|-) # we ignore this now
334 .../*) # find here or above
335 mksrc=`FindHereOrAbove -C "$Mydir" -s "$mksrc/sys.mk"`
337 mksrc=`dirname $mksrc`
339 *) # guess we want mksrc...
340 mksrc=`GetDir /mk sys.mk "$mksrc" "$3" ./mk* "$srcdir"/mk* "$srcdir"/../mk*`
341 [ -d "${mksrc:-/dev/null}" ] || Usage "Use '-m none' to build without mksrc"
346 objdir="${objdir:-$OBJROOT$HOST_TARGET}"
347 [ -d "$objdir" ] || mkdir -p "$objdir"
348 [ -d "$objdir" ] || mkdir "$objdir"
349 cd "$objdir" || exit 1
355 /) [ -d /share ] || return;;
357 if [ -d "$1/../share" ]; then
358 echo `dirname "$1"`/share
366 # make it easy to force prefix to use $HOST_TARGET
367 : looking at "$prefix"
369 */host?target) prefix=`echo "$prefix" | sed "s,host.target,${HOST_TARGET},"`;;
372 share_dir="${share_dir:-`ShareDir $prefix`}"
374 AddConfigure --prefix= "$prefix"
375 case "$CONFIGURE_ARGS" in
376 *--with-*-sys-path*) ;; # skip
377 *) [ "$share_dir" ] && AddConfigure --with-default-sys-path= "$share_dir/mk";;
379 if [ "$mksrc" ]; then
380 AddConfigure --with-mksrc= "$mksrc"
381 # not all cc's support this
382 CFLAGS_MF= CFLAGS_MD=
383 export CFLAGS_MF CFLAGS_MD
386 # this makes it easy to run the bmake we just built
387 # the :tA dance is needed because 'pwd' and even /bin/pwd
388 # may not give the same result as realpath().
392 MAKESYSPATH=$mksrc SRCTOP=$Mydir OBJTOP=$objdir \
393 MAKEOBJDIR='${.CURDIR:S,${SRCTOP:tA},${OBJTOP:tA},}' \
394 ${BMAKE:-$objdir/bmake} -f $Mydir/Makefile "$@"
398 # make sure test below uses the same diff that configure did
399 TOOL_DIFF=`type diff | sed 's,[()],,g;s,^[^/][^/]*,,;q'`
403 $srcdir/configure $CONFIGURE_ARGS || exit 1
407 [ -s make-bootstrap.sh ] || op_configure
408 chmod 755 make-bootstrap.sh || exit 1
409 ./make-bootstrap.sh || exit 1
416 [ -x bmake ] || op_build
421 if [ -x bmake ]; then
423 BMAKE=$objdir/bmake$$ Bmake clean
425 elif [ $objdir != $srcdir ]; then
432 case "$INSTALL_PREFIX,$INSTALL_BIN,$prefix" in
433 ,$HOST_TARGET/bin,*/$HOST_TARGET)
434 INSTALL_PREFIX=`dirname $prefix`
437 INSTALL_PREFIX=${INSTALL_PREFIX:-$prefix}
438 Bmake install prefix=$INSTALL_PREFIX BINDIR=$INSTALL_PREFIX/${INSTALL_BIN:-bin} ${INSTALL_DESTDIR:+DESTDIR=$INSTALL_DESTDIR} $INSTALL_ARGS || exit 1
442 rm -f make-bootstrap.sh bmake *.o
443 if [ -n "$INSTALL_PREFIX" ]; then
447 MAKE_VERSION=`sed -n '/^MAKE_VERSION/ { s,.*= *,,;p; }' $srcdir/Makefile`
448 echo You can install by running:
450 echo $0 $cmd_args op=install
452 echo "Use --install-prefix=/something to install somewhere other than $prefix"
453 echo "Use --install-destdir=/somewhere to set DESTDIR during install"
454 echo "Use --install-host-target to use INSTALL_BIN=$HOST_TARGET/bin"
455 echo "Use -DWITH_PROG_VERSION to install as bmake-$MAKE_VERSION"
456 echo "Use -DWITHOUT_PROG_LINK to suppress bmake -> bmake-$MAKE_VERSION symlink"
457 echo "Use -DWITHOUT_INSTALL_MK to skip installing files to $prefix/share/mk"