bsd_makefile revision 26a4456dd6f1a5d7d7fff766551461a578687c4a
938c687542a2f620cc7e781ddba4f3911dc1320dyoshiki#! /bin/sh
d8a47f7a3f857a43664484552cf83bf170e4629dnd# ====================================================================
938c687542a2f620cc7e781ddba4f3911dc1320dyoshiki# The Apache Software License, Version 1.1
d8a47f7a3f857a43664484552cf83bf170e4629dnd#
938c687542a2f620cc7e781ddba4f3911dc1320dyoshiki# Copyright (c) 2000-2004 The Apache Software Foundation. All rights
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd# reserved.
6fbd2e53c97ea6976d93e0ac521adabc55e0fb73nd#
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd# Redistribution and use in source and binary forms, with or without
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd# modification, are permitted provided that the following conditions
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd# are met:
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd#
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd# 1. Redistributions of source code must retain the above copyright
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd# notice, this list of conditions and the following disclaimer.
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd#
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd# 2. Redistributions in binary form must reproduce the above copyright
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd# notice, this list of conditions and the following disclaimer in
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd# the documentation and/or other materials provided with the
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd# distribution.
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd#
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd# 3. The end-user documentation included with the redistribution,
d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacdnd# if any, must include the following acknowledgment:
7db9f691a00ead175b03335457ca296a33ddf31bnd# "This product includes software developed by the
938c687542a2f620cc7e781ddba4f3911dc1320dyoshiki# Apache Software Foundation (http://www.apache.org/)."
938c687542a2f620cc7e781ddba4f3911dc1320dyoshiki# Alternately, this acknowledgment may appear in the software itself,
938c687542a2f620cc7e781ddba4f3911dc1320dyoshiki# if and wherever such third-party acknowledgments normally appear.
938c687542a2f620cc7e781ddba4f3911dc1320dyoshiki#
938c687542a2f620cc7e781ddba4f3911dc1320dyoshiki# 4. The names "Apache" and "Apache Software Foundation" must
938c687542a2f620cc7e781ddba4f3911dc1320dyoshiki# not be used to endorse or promote products derived from this
938c687542a2f620cc7e781ddba4f3911dc1320dyoshiki# software without prior written permission. For written
938c687542a2f620cc7e781ddba4f3911dc1320dyoshiki# permission, please contact apache@apache.org.
07ab565873bfd241828a89261b1260c448a0799eyoshiki#
07ab565873bfd241828a89261b1260c448a0799eyoshiki# 5. Products derived from this software may not be called "Apache",
07ab565873bfd241828a89261b1260c448a0799eyoshiki# nor may "Apache" appear in their name, without prior written
07ab565873bfd241828a89261b1260c448a0799eyoshiki# permission of the Apache Software Foundation.
938c687542a2f620cc7e781ddba4f3911dc1320dyoshiki#
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
# ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
# ====================================================================
#
# This software consists of voluntary contributions made by many
# individuals on behalf of the Apache Software Foundation. For more
# information on the Apache Software Foundation, please see
# <http://www.apache.org/>.
#
# The build environment was provided by Sascha Schumann.
#
# cwd must be top_srcdir
test -f build/bsd_makefile || exit 2
test -f bsd_converted && exit 0
tmpfile=`mktemp /tmp/bsd_makefile.XXXXXX 2>/dev/null` || tmpfile="tmp.$$"
for i in build/*.mk; do
sed 's/^include \(.*\)/.include "\1"/' $i >$tmpfile \
&& cp $tmpfile $i
done
rm -f $tmpfile
touch bsd_converted
exit 0