1 # DJGPP Maintainer's Makefile -*-Makefile-*- 2 # Requires GNU sed 3 4 ## Copyright (C) 2005-2012 Free Software Foundation, Inc. 5 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. 10 # 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. 15 # 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/>. 18 19 top_srcdir = .. 20 srcdir = . 21 22 SHELL = /bin/sh 23 24 all: README 25 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-$@ $@ 38