X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=.travis.sh;h=6b69c638ac94fc639c842137de4d59f1f2899e64;hb=refs%2Fheads%2Fdebian;hp=cefeed142704b2ab020d5830e6abe82876f0687e;hpb=3cd9cbb88cf75b8c660fec8bcb02d245151711af;p=fw%2Fstlink diff --git a/.travis.sh b/.travis.sh index cefeed1..6b69c63 100755 --- a/.travis.sh +++ b/.travis.sh @@ -6,7 +6,13 @@ else brew install libusb fi -mkdir build -cd build -cmake .. -make +if [ "$BUILD_SYSTEM" == "cmake" ]; then + mkdir build + cd build + cmake .. + make +else + ./autogen.sh + ./configure + make +fi