1227935Sfjoe#!/bin/sh
2227935Sfjoe#
3227935Sfjoe# Copyright (c) 2011 Max Khon, The FreeBSD Project
4227935Sfjoe# All rights reserved.
5227935Sfjoe#
6227935Sfjoe# Redistribution and use in source and binary forms, with or without
7227935Sfjoe# modification, are permitted provided that the following conditions
8227935Sfjoe# are met:
9227935Sfjoe# 1. Redistributions of source code must retain the above copyright
10227935Sfjoe#    notice, this list of conditions and the following disclaimer.
11227935Sfjoe# 2. Redistributions in binary form must reproduce the above copyright
12227935Sfjoe#    notice, this list of conditions and the following disclaimer in the
13227935Sfjoe#    documentation and/or other materials provided with the distribution.
14227935Sfjoe#
15227935Sfjoe# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16227935Sfjoe# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17227935Sfjoe# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18227935Sfjoe# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19227935Sfjoe# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20227935Sfjoe# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21227935Sfjoe# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22227935Sfjoe# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23227935Sfjoe# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24227935Sfjoe# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25227935Sfjoe# SUCH DAMAGE.
26227935Sfjoe#
27227935Sfjoe# $FreeBSD$
28227935Sfjoe#
29227935Sfjoe
30227935Sfjoe#
31227935Sfjoe# Utility script to build specific parts of the source tree on all arches
32227935Sfjoe#
33227935Sfjoe# Example:
34227935Sfjoe#
35227935Sfjoe# cd /usr/src
36227935Sfjoe# make toolchains		# build toolchain for all arches
37227935Sfjoe# sh tools/tinder.sh gnu/lib/libdialog usr.sbin/sade NO_CLEAN=yes
38227935Sfjoe#				# build libdialog and sade for all architectures
39227935Sfjoe#				# without making clean
40228066Sfjoe# sh tools/tinder.sh gnu/lib/libdialog usr.sbin/sade TARGETS="amd64 i386"
41228066Sfjoe#				# build libdialog and sade only for amd64 and i386
42227935Sfjoe#
43227935Sfjoe
44227935Sfjoeif [ $# -eq 0 ]; then
45227935Sfjoe	echo 1>&2 "Usage: `basename $0` [MAKEVAR=value...] path..."
46227935Sfjoe	exit 1
47227935Sfjoefi
48227935Sfjoe
49227935Sfjoe# MAKE_ARGS is intentionally not reset to allow caller to specify additional MAKE_ARGS
50227935SfjoeSUBDIR=
51227935Sfjoefor i in "$@"; do
52227935Sfjoe	case "$i" in
53227935Sfjoe	*=*)
54227935Sfjoe		MAKE_ARGS="$MAKE_ARGS $i"
55227935Sfjoe		;;
56227935Sfjoe	*)
57227935Sfjoe		SUBDIR="$SUBDIR $i"
58227937Sfjoe		;;
59227935Sfjoe	esac
60227935Sfjoedone
61227935Sfjoemake tinderbox UNIVERSE_TARGET="_cleanobj _obj _depend everything" $MAKE_ARGS SUBDIR_OVERRIDE="$SUBDIR"
62