aboutsummaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-11-04 19:42:39 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2014-11-04 19:42:39 +0100
commit3cf1fd2a97f5673b53bab691f8db97c844b999ba (patch)
treef82c5855e8df2a9ab171b26d7e26d270f4ad52ba /autogen.sh
parent0a648d2db08a0182560096b435f67c60e3c9cbd5 (diff)
downloadyawa-3cf1fd2a97f5673b53bab691f8db97c844b999ba.tar.xz
Replace autotools with CMake
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 45a5ad4..0000000
--- a/autogen.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-# autogen script for fluxbox.
-
-dothis() {
- echo "Executing: $*"
- echo
- if ! $* ;then
- echo -e '\n ERROR: Carefully read the error message and'
- echo ' try to figure out what went wrong.'
- exit 1
- fi
-}
-
-libtoolize --copy --force --automake
-rm -f config.cache
-dothis aclocal -I .
-dothis autoheader
-dothis automake -a
-dothis autoconf
-
-echo 'Succes, now continue with ./configure'
-echo 'Use configure --help for detailed help.'