diff --git a/scripts/build.sh b/scripts/build.sh deleted file mode 100755 index 1ae31aa7da..0000000000 --- a/scripts/build.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -# -# Distributed Linear Algebra with Future (DLAF) -# -# Copyright (c) 2018-2024, ETH Zurich -# All rights reserved. -# -# Please, refer to the LICENSE file in the root directory. -# SPDX-License-Identifier: BSD-3-Clause -# - -# Template build script -# --------------------- - -rm -rf CMakeCache.txt CMakeFiles - -export CC= -export CXX= -export MKLROOT= -pika_DIR= -blaspp_DIR= -lapackpp_DIR= - -# See README.md for all available options -cmake \ - -D DLAF_WITH_MKL=ON \ - -D CMAKE_BUILD_TYPE=RelWithDebugInfo \ - -make