chiark / gitweb /
Remove some more build output files
authorIan Jackson <Ian.Jackson@eu.citrix.com>
Fri, 20 Feb 2015 18:51:07 +0000 (18:51 +0000)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Fri, 20 Feb 2015 18:51:07 +0000 (18:51 +0000)
Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
.gitignore
libsympathy-config [deleted file]
libsympathy-config.src [deleted file]

index 9191dc865a20565bfbc7aacbefb5f15eebff3ac9..8fda08ef05d0ad033b4449dccb27de40b07cb8d8 100644 (file)
@@ -28,3 +28,6 @@ src/Makefile
 src/Makefile.in
 test/Makefile
 test/Makefile.in
+
+libsympathy-config
+libsympathy-config.src
diff --git a/libsympathy-config b/libsympathy-config
deleted file mode 100755 (executable)
index aaf3c54..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-#!/bin/sh
-#
-# libsympathy-config.src.in:
-#
-# Copyright (c) 2008 James McKenzie <sympathy@madingley.org>,
-# All rights reserved.
-#
-# $Id: libsympathy-config.src.in,v 1.1 2008/02/03 16:20:23 james Exp $
-#
-# $Log: libsympathy-config.src.in,v $
-# Revision 1.1  2008/02/03 16:20:23  james
-# *** empty log message ***
-#
-#
-#
-#
-
-prefix=/usr/local
-exec_prefix=${prefix}
-exec_prefix_set=no
-
-usage()
-{
-       cat <<EOF
-Usage: libsympathy-config [OPTIONS] [LIBRARIES]
-Options:
-       [--prefix[=DIR]]
-       [--exec-prefix[=DIR]]
-       [--version]
-       [--libs]
-       [--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
-      if test $exec_prefix_set = no ; then
-        exec_prefix=$optarg
-      fi
-      ;;
-    --prefix)
-      echo_prefix=yes
-      ;;
-    --exec-prefix=*)
-      exec_prefix=$optarg
-      exec_prefix_set=yes
-      ;;
-    --exec-prefix)
-      echo_exec_prefix=yes
-      ;;
-    --version)
-      echo 1.2.1-E
-      exit 0
-      ;;
-    --cflags)
-      if test "${prefix}/include" != /usr/include ; then
-        includes="-I${prefix}/include"
-      fi
-      echo_cflags=yes
-      ;;
-    --libs)
-      echo_libs=yes
-      ;;
-    *)
-      usage 1 1>&2
-      ;;
-  esac
-  shift
-done
-
-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
-       echo $includes
-fi
-if test "$echo_libs" = "yes"; then
-       echo -L${exec_prefix}/lib -lsympathy 
-fi
diff --git a/libsympathy-config.src b/libsympathy-config.src
deleted file mode 100755 (executable)
index 16232d6..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-#!/bin/sh
-#
-# libsympathy-config.src.in:
-#
-# Copyright (c) 2008 James McKenzie <sympathy@madingley.org>,
-# All rights reserved.
-#
-# $Id: libsympathy-config.src.in,v 1.1 2008/02/03 16:20:23 james Exp $
-#
-# $Log: libsympathy-config.src.in,v $
-# Revision 1.1  2008/02/03 16:20:23  james
-# *** empty log message ***
-#
-#
-#
-#
-
-prefix=/usr/local
-exec_prefix=${prefix}
-exec_prefix_set=no
-
-usage()
-{
-       cat <<EOF
-Usage: libsympathy-config [OPTIONS] [LIBRARIES]
-Options:
-       [--prefix[=DIR]]
-       [--exec-prefix[=DIR]]
-       [--version]
-       [--libs]
-       [--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
-      if test $exec_prefix_set = no ; then
-        exec_prefix=$optarg
-      fi
-      ;;
-    --prefix)
-      echo_prefix=yes
-      ;;
-    --exec-prefix=*)
-      exec_prefix=$optarg
-      exec_prefix_set=yes
-      ;;
-    --exec-prefix)
-      echo_exec_prefix=yes
-      ;;
-    --version)
-      echo %VERSION%
-      exit 0
-      ;;
-    --cflags)
-      if test "${prefix}/include" != /usr/include ; then
-        includes="-I${prefix}/include"
-      fi
-      echo_cflags=yes
-      ;;
-    --libs)
-      echo_libs=yes
-      ;;
-    *)
-      usage 1 1>&2
-      ;;
-  esac
-  shift
-done
-
-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
-       echo $includes
-fi
-if test "$echo_libs" = "yes"; then
-       echo -L${exec_prefix}/lib -lsympathy 
-fi