COIN-OR::LEMON - Graph Library

Changeset 35:f7a4e8024952 in lemon-tutorial


Ignore:
Timestamp:
02/17/10 18:42:19 (14 years ago)
Author:
Akos Ladanyi <ladanyi@…>
Branch:
default
Phase:
public
Message:

Put all version numbers in config.sh for easier changing

Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • Makefile.in

    r34 r35  
     1LIBSTDCXX_VERSION = @LIBSTDCXX_VERSION@
     2
    13EPS_IMAGES18 =
    24
     
    3739
    3840update-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 && \
    4042        mv libstdc++.tag.tmp libstdc++.tag || \
    4143        rm libstdc++.tag.tmp
  • configure

    r34 r35  
    11#!/bin/bash
     2
     3source config.sh
    24
    35quiet=0
     
    3335  -h, --help                  display this help and exit
    3436      --lemon-doc-prefix=loc  The location of the lemon doc. By default it is
    35                               http://lemon.cs.elte.hu/pub/doc/1.1.1
     37                              http://lemon.cs.elte.hu/pub/doc/$LEMON_VERSION
    3638
    3739Expamle:
     
    5557if test -z "$lemon_doc_prefix"
    5658then
    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"
    5860fi
    5961lemon_doc_prefix=$(echo $lemon_doc_prefix|sed 's/\//\\\\\\\//g')
     
    6567sed -e "s/@lemon_cflags@/${lemon_cflags}/g" \
    6668    -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" \
    6871    < Makefile.in > Makefile
Note: See TracChangeset for help on using the changeset viewer.