From: Markus R. <rol...@us...> - 2005-12-25 14:56:05
|
Update of /cvsroot/simspark/simspark/spark/spark In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2143/spark Modified Files: Makefile.am Added Files: spark-config.in Log Message: - added spark-config script template - changed prefix in *-config scripts from rcssserver3d to simspark --- NEW FILE: spark-config.in --- #! /bin/sh prefix=@prefix@ exec_prefix=@exec_prefix@ usage() { cat <<EOF Usage: spark-config [OPTIONS] [LIBRARIES] Options: [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libdir] [--libs] [--libtool] [--cflags] EOF exit $1 } if test $# -eq 0 ; then usage 1 1>&2 fi while test $# -gt 0 ; do case "$1" in -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac case $1 in --prefix=*) prefix=$optarg local_prefix=yes ;; --prefix) echo_prefix=yes ;; --exec-prefix=*) exec_prefix=$optarg exec_prefix_set=yes local_prefix=yes ;; --exec-prefix) echo_exec_prefix=yes ;; --version) echo @spark_version@ exit 0 ;; --cflags) echo_cflags=yes ;; --libs) echo_libs=yes ;; --libtool) echo_libtool=yes ;; --libdir) echo_libdir=yes ;; *) usage 1 1>&2 ;; esac shift done if test "$local_prefix" = "yes" ; then if test "$exec_prefix_set" != "yes" ; then exec_prefix=$prefix fi fi if test "$echo_prefix" = "yes" ; then echo $prefix fi if test "$echo_exec_prefix" = "yes" ; then echo $exec_prefix fi if test "$echo_cflags" = "yes" ; then cflags="-I@includedir@/simspark" if test "@includedir@" != "/usr/include" ; then echo $cflags -I@includedir@ else echo $cflags fi fi if test "$echo_libs" = "yes" ; then if test "@debug@" = "true"; then libs="-lspark_debug @SPARK_LIBADD@" else libs="-lspark @SPARK_LIBADD@" fi echo -L@libdir@/simspark $libs fi if test "$echo_libtool" = "yes" ; then if test "@debug@" = "true"; then convlib="libspark_debug.la" else convlib="libspark.la" fi echo @libdir@/simspark/$convlib fi if test "$echo_libdir" = "yes" ; then echo @libdir@/simspark fi # EOF Index: Makefile.am =================================================================== RCS file: /cvsroot/simspark/simspark/spark/spark/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 19 Dec 2005 20:09:18 -0000 1.1 --- Makefile.am 25 Dec 2005 14:55:52 -0000 1.2 *************** *** 16,19 **** --- 16,21 ---- endif + bin_SCRIPTS = spark-config + AM_CPPFLAGS = -I${top_srcdir}/lib -I${top_srcdir}/utility \ @FREETYPE_CPPFLAGS@ @RUBY_CPPFLAGS@ |