Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Side by Side Diff: bison/src/bison/2.4.1/bison-2.4.1-src/djgpp/Makefile.maint

Issue 10807020: Add native Windows binary for bison. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # DJGPP Maintainer's Makefile -*-Makefile-*-
2 # Requires GNU sed
3
4 ## Copyright (C) 2005, 2006, 2007, 2008 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-$@ $@
OLDNEW
« no previous file with comments | « bison/src/bison/2.4.1/bison-2.4.1-src/data/yacc.c ('k') | bison/src/bison/2.4.1/bison-2.4.1-src/djgpp/README.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698