aboutsummaryrefslogtreecommitdiffstats
path: root/prepare-source
blob: cceecc0f48c43614c5907fa568ea89ad6a633757 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# Use autoconf, autoheader, yodl, etc. to ready the generated files
# in the release.  This is typically used after applying a diff from
# "patches" directory in CVS.
#
# NOTE:  if you use a diff from the "patches" directory in a release
# tar, this is not needed (but doesn't hurt anything).
dir=`dirname $0`
if test x"$dir" = x -o x"$dir" = x.; then
    make -f prepare-source.mak
else
    make -C "$dir" -f prepare-source.mak
fi