blob: 6b902d813ec1ae8d578b626dda95bbed95e6e5e3 [file] [log] [blame]
Patrick Georgi40ad8422011-05-21 22:18:59 +00001#!/bin/sh
2# This file is part of the coreboot project.
3#
4# Copyright (C) 2011 Patrick Georgi <patrick@georgi-clan.de>
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; version 2 of the License.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18#
19# DESCR: Check that build directories can be chosen freely
20
21# $1: command to test for GNU make
22search_make() {
23if [ -n "`$1 --version 2>&1 |grep GNU`" ]; then MAKE=$1; fi
24}
25
26# if $1 and $2 differ, exit with failure
27compare_output() {
28if ! [ "$1" = "$2" ]; then
29 echo \'$1\' should be \'$2\'
30 exit 1
31fi
32}
33
34# $1: object directory
35run_printall() {
Stefan Reinauer8ebd11e2012-03-08 11:06:25 -080036$MAKE CONFIG_CCACHE=n CONFIG_SCANBUILD_ENABLE=n NOMKDIR=1 DOTCONFIG=$TMPCONFIG obj=$1 printall |sed -e "s,^ *,," -e "s,^ramstage-objs:=,," -e "s,mainboard/[^/]*/[^/]*/,.../," |tr " " "\n"|grep "/static.*\.[co]" |sort |tr '\012\015' ' ' |sed -e "s, *, ,g" -e "s, *$,,"
Patrick Georgi40ad8422011-05-21 22:18:59 +000037}
38
39# find GNU make
40search_make make
41search_make gmake
42search_make gnumake
43
44if [ "$MAKE" = "" ]; then
45 echo Could not identify GNU make
46 exit 1
47fi
48
49# prepare a config to use
Patrick Georgi9c7467e2012-02-25 15:33:43 +010050TMPCONFIG=`mktemp .tmpconfig.XXXXXX`
Patrick Georgi40ad8422011-05-21 22:18:59 +000051rm -f $TMPCONFIG
Stefan Reinauer8ebd11e2012-03-08 11:06:25 -080052$MAKE DOTCONFIG=$TMPCONFIG allyesconfig >/dev/null
Patrick Georgi40ad8422011-05-21 22:18:59 +000053
54# look up parent directory
55PARENTDIR=`dirname $PWD`
56
57compare_output "`run_printall build`" "build/.../static.c build/.../static.ramstage.o"
58compare_output "`run_printall ../obj`" "$PARENTDIR/obj/.../static.c $PARENTDIR/obj/.../static.ramstage.o"
59compare_output "`run_printall /tmp`" "/tmp/.../static.c /tmp/.../static.ramstage.o"
60compare_output "`run_printall /../tmp`" "/tmp/.../static.c /tmp/.../static.ramstage.o"
61
62rm -f $TMPCONFIG
63