aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure24
1 files changed, 0 insertions, 24 deletions
diff --git a/configure b/configure
deleted file mode 100755
index 7ac2b50..0000000
--- a/configure
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-
-function makeMakefile()
-{
- params=''
- for arg in "$@"; do
- params="$params '$(echo $arg | sed -e "s/'/'\\''/g")'"
- done
-
- echo 'PARAMS ='"$params"
- echo
- echo -e 'default: all\n'
- echo -e 'all: build\n'
- for func in $(echo 'build' 'prebuilt' 'uninstall' 'uninstall-old' 'clean' 'clean-old' 'view'); do
- echo -e "$func"':\n\t./setup.py ---DESTDIR="$(DESTDIR)" ---PREFIX="$(PREFIX)" $(PARAMS) '"$func"'\n'
- done
- echo -e 'install-build:\n\t./setup.py ---DESTDIR="$(DESTDIR)" ---PREFIX="$(PREFIX)" $(PARAMS) install\n'
- echo -e 'install:\n\t./setup.py ---DESTDIR="$(DESTDIR)" ---PREFIX="$(PREFIX)" $(PARAMS) prebuilt\n'
-}
-
-
-makeMakefile "$@" > Makefile
-