]> granicus.if.org Git - apache/blob - build/fastgen.sh
These changes are committed together, because they depend on each other.
[apache] / build / fastgen.sh
1 #! /bin/sh
2 #
3 # Copyright (c) 1999, 2000 Sascha Schumann. All rights reserved.
4 #
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
7 # are met:
8 # 1. Redistributions of source code must retain the above copyright
9 #    notice, this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright
11 #    notice, this list of conditions and the following disclaimer in the
12 #    documentation and/or other materials provided with the distribution.
13
14 # THIS SOFTWARE IS PROVIDED BY SASCHA SCHUMANN ``AS IS'' AND ANY EXPRESS OR
15 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
16 # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
17 # EVENT SHALL SASCHA SCHUMANN BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
18 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
20 # OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
21 # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
22 # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
23 # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 #
25 ##############################################################################
26 # $Id: fastgen.sh,v 1.1 2000/01/11 13:10:58 sascha Exp $ 
27 #
28
29 srcdir=$1
30 shift
31
32 topsrcdir=`(cd $srcdir; pwd)`
33
34 mkdir_p=$1
35 shift
36
37 if test "$mkdir_p" = "yes"; then
38   mkdir_p="mkdir -p"
39 else
40   mkdir_p="$topsrcdir/helpers/mkdir.sh"
41 fi
42
43 base="\$(DEPTH)/$srcdir"
44
45 for i in $@ ; do
46         echo "creating $i"
47         dir=`dirname $i`
48         $mkdir_p $dir
49         sed \
50                 -e s#@topsrcdir@#$base# \
51                 -e s#@srcdir@#$base/$dir# \
52         < $topsrcdir/$i.in > $i
53 done