Home | History | Annotate | Download | only in djgpp
      1 # DJGPP Maintainer's Makefile                                    -*-Makefile-*-
      2 # Requires GNU sed
      3 
      4 ## Copyright (C) 2005, 2006 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 2, or (at your option)
      9 ## 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, write to the Free Software Foundation,
     18 ## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
     19 
     20 top_srcdir = ..
     21 srcdir = .
     22 
     23 SHELL = /bin/sh
     24 
     25 all: README
     26 
     27 README: README.in $(top_srcdir)/configure
     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`; \
     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-$@ $@
     39