Changeset 35:f7a4e8024952 in lemon-tutorial
- Timestamp:
- 02/17/10 18:42:19 (15 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.in
r34 r35 1 LIBSTDCXX_VERSION = @LIBSTDCXX_VERSION@ 2 1 3 EPS_IMAGES18 = 2 4 … … 37 39 38 40 update-external-tags: 39 wget -O libstdc++.tag.tmp http://gcc.gnu.org/onlinedocs/libstdc++/libstdc++-html-USERS- 4.3/libstdc++.tag && \41 wget -O libstdc++.tag.tmp http://gcc.gnu.org/onlinedocs/libstdc++/libstdc++-html-USERS-$(LIBSTDCXX_VERSION)/libstdc++.tag && \ 40 42 mv libstdc++.tag.tmp libstdc++.tag || \ 41 43 rm libstdc++.tag.tmp -
configure
r34 r35 1 1 #!/bin/bash 2 3 source config.sh 2 4 3 5 quiet=0 … … 33 35 -h, --help display this help and exit 34 36 --lemon-doc-prefix=loc The location of the lemon doc. By default it is 35 http://lemon.cs.elte.hu/pub/doc/ 1.1.137 http://lemon.cs.elte.hu/pub/doc/$LEMON_VERSION 36 38 37 39 Expamle: … … 55 57 if test -z "$lemon_doc_prefix" 56 58 then 57 lemon_doc_prefix= 'http://lemon.cs.elte.hu/pub/doc/1.1.1'59 lemon_doc_prefix="http://lemon.cs.elte.hu/pub/doc/$LEMON_VERSION" 58 60 fi 59 61 lemon_doc_prefix=$(echo $lemon_doc_prefix|sed 's/\//\\\\\\\//g') … … 65 67 sed -e "s/@lemon_cflags@/${lemon_cflags}/g" \ 66 68 -e "s/@lemon_libs@/${lemon_libs}/g" \ 67 -e "s/@make_lemon_doc_prefix@/${lemon_doc_prefix}/g" \ 69 -e "s/@make_lemon_doc_prefix@/${lemon_doc_prefix}/g" \ 70 -e "s/@LIBSTDCXX_VERSION@/${LIBSTDCXX_VERSION}/g" \ 68 71 < Makefile.in > Makefile
Note: See TracChangeset
for help on using the changeset viewer.