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