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