From 460f20bfba8a95d5a5b3d317c948730bd84ec731 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Sat, 20 Oct 2007 04:30:13 +0000 Subject: removed build products from CVS, these files are created as part of the build process svn path=/trunk/externals/pdp/; revision=8848 --- bin/pdp-config | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 bin/pdp-config (limited to 'bin/pdp-config') diff --git a/bin/pdp-config b/bin/pdp-config deleted file mode 100644 index 1e29f99..0000000 --- a/bin/pdp-config +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh - -prefix=/usr/local -version=0.12.4 - -usage="\ -Usage: pdp-config [--version] [--cflags] [--libdir]" - -if test $# -eq 0; then - echo "${usage}" 1>&2 - exit 1 -fi - -while test $# -gt 0; do - case "$1" in - -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; - *) optarg= ;; - esac - - case $1 in - -n) - NEWLINE="-n" - ;; - --libdir) - echo $NEWLINE $prefix/lib/scaf - ;; - --version) - echo $NEWLINE $version - ;; - --cflags) - echo $NEWLINE -I$prefix/include/pdp - ;; - *) - echo "${usage}" 1>&2 - exit 1 - ;; - esac - shift -done -- cgit v1.2.1