From 725fe3711071aa153a356c9e93d354dc61309e3c Mon Sep 17 00:00:00 2001 From: Alan Antonuk Date: Tue, 10 Oct 2017 23:52:48 -0700 Subject: build: remove autotools build system CMake based system works on the 3 platforms that we target, and maintaining a parallel build-system isn't worth it for this sized project. --- travis.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'travis.sh') diff --git a/travis.sh b/travis.sh index 7bf9383..8a63cca 100755 --- a/travis.sh +++ b/travis.sh @@ -1,12 +1,5 @@ #!/usr/bin/env bash -build_autotools() { - autoreconf -i - ./configure --prefix=$PWD/_install - make install - make dist -} - build_cmake() { mkdir $PWD/_build && cd $PWD/_build cmake .. -DCMAKE_INSTALL_PREFIX=$PWD/../_install -DCMAKE_C_FLAGS="-Werror" \ @@ -40,7 +33,7 @@ build_scan-build() { } if [ "$#" -ne 1 ]; then - echo "Usage: $0 {autotools|cmake|asan|tsan|scan-build}" + echo "Usage: $0 {cmake|asan|tsan|scan-build}" exit 1 fi -- cgit v1.2.1