From 981fd5ee440ae012d336590a84a42b909872745a Mon Sep 17 00:00:00 2001 From: Recep Aslantas Date: Thu, 12 Sep 2019 07:01:49 +0300 Subject: [PATCH] Delete build-deps.sh --- build-deps.sh | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 build-deps.sh diff --git a/build-deps.sh b/build-deps.sh deleted file mode 100644 index 20365ba..0000000 --- a/build-deps.sh +++ /dev/null @@ -1,23 +0,0 @@ -#! /bin/sh -# -# Copyright (c), Recep Aslantas. -# -# MIT License (MIT), http://opensource.org/licenses/MIT -# Full license can be found in the LICENSE file -# - -# check if deps are pulled -git submodule update --init --recursive - -cd $(dirname "$0") - -# general deps: gcc make autoconf automake libtool cmake - -# test - cmocka -cd ./test/lib/cmocka -rm -rf build -mkdir -p build -cd build -cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug .. -make -j8 -cd ../../../../