Test token.prefix.
[bison/ericb.git] / djgpp / Makefile.maint
blob3739f97a89c7b7aaf45e66c7850e0a487e0828b9
1 # DJGPP Maintainer's Makefile                                    -*-Makefile-*-
2 # Requires GNU sed
4 ## Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 top_srcdir = ..
20 srcdir = .
22 SHELL = /bin/sh
24 all: README
26 README: README.in $(top_srcdir)/configure
27         PACKAGE=`grep "^[        ]*PACKAGE=" $(top_srcdir)/configure | sed -e 's/^[      ]*PACKAGE=//' -e s/[\"\']//g`; \
28         VERSION=`grep "^[        ]*VERSION=" $(top_srcdir)/configure | sed -e 's/^[      ]*VERSION=//' -e s/[\"\']//g`; \
29         package_version=`echo "$${VERSION}" | sed 's/\.//g'`; \
30         tree_version=`echo "$${VERSION}" | sed 's/\.//2g'`; \
31         sed \
32             -e "s/@V@/$${PACKAGE}-$${VERSION}/g" \
33             -e "s/@VERSION@/$${VERSION}/g" \
34             -e "s/@PACKAGE_VERSION@/$$package_version/g" \
35             -e "s/@TREE_VERSION@/$$tree_version/g" \
36           $(srcdir)/README.in > t-$@
37         mv t-$@ $@