bsd_makefile revision a2652f3451528565db1f85db6953fc30799d7ead
c79e39ad568d9af854765f64049534044ef6c034nd#! /bin/sh
2d0611ffc9f91c5fc2ddccb93f9a3d17791ae650takashi#
c79e39ad568d9af854765f64049534044ef6c034nd# Copyright 2000-2006 The Apache Software Foundation or its licensors, as
d3e250aab242db84d14060985b5db675a731d548nd# applicable.
c79e39ad568d9af854765f64049534044ef6c034nd#
c79e39ad568d9af854765f64049534044ef6c034nd# Licensed under the Apache License, Version 2.0 (the "License");
c79e39ad568d9af854765f64049534044ef6c034nd# you may not use this file except in compliance with the License.
c79e39ad568d9af854765f64049534044ef6c034nd# You may obtain a copy of the License at
c79e39ad568d9af854765f64049534044ef6c034nd#
c79e39ad568d9af854765f64049534044ef6c034nd# http://www.apache.org/licenses/LICENSE-2.0
4a56677aad9b66a36f3dc9fddbca8dc1230ad471rbowen#
4b575a6b6704b516f22d65a3ad35696d7b9ba372rpluem# Unless required by applicable law or agreed to in writing, software
4b575a6b6704b516f22d65a3ad35696d7b9ba372rpluem# distributed under the License is distributed on an "AS IS" BASIS,
c79e39ad568d9af854765f64049534044ef6c034nd# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
c79e39ad568d9af854765f64049534044ef6c034nd# See the License for the specific language governing permissions and
# limitations under the License.
#
#
# 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