diff --git a/tests/ma_build_tests_bsd b/tests/ma_build_tests_bsd deleted file mode 100755 index bc6fff0e..00000000 --- a/tests/ma_build_tests_bsd +++ /dev/null @@ -1,8 +0,0 @@ -cc ma_test_0.c -o ./bin/ma_test_0 -Wall -lpthread -lm -c++ ma_test_0.c -o ./bin/ma_test_0_cpp -Wall -lpthread -lm - -cc ma_profiling.c -o ./bin/ma_profiling -Wall -lpthread -lm -c++ ma_profiling.c -o ./bin/ma_profiling_cpp -Wall -lpthread -lm - -cc ma_dithering.c -o ./bin/ma_dithering -Wall -lpthread -lm -c++ ma_dithering.c -o ./bin/ma_dithering_cpp -Wall -lpthread -lm diff --git a/tests/ma_build_tests_emscripten.bat b/tests/ma_build_tests_emscripten.bat deleted file mode 100644 index 942a27b6..00000000 --- a/tests/ma_build_tests_emscripten.bat +++ /dev/null @@ -1,2 +0,0 @@ -::emcc ./ma_test_0.c -o ./bin/ma_test_0_emscripten.html -s WASM=0 -Wall -emcc ./ma_duplex.c -o ./bin/ma_duplex.html -s WASM=0 -Wall \ No newline at end of file diff --git a/tests/ma_build_tests_linux b/tests/ma_build_tests_linux deleted file mode 100644 index 587b0c8e..00000000 --- a/tests/ma_build_tests_linux +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -cc ma_test_0.c -o ./bin/ma_test_0 -Wall -ldl -lpthread -lm -c++ ma_test_0.c -o ./bin/ma_test_0_cpp -Wall -ldl -lpthread -lm - -cc ma_profiling.c -o ./bin/ma_profiling -Wall -ldl -lpthread -lm -c++ ma_profiling.c -o ./bin/ma_profiling_cpp -Wall -ldl -lpthread -lm - -cc ma_dithering.c -o ./bin/ma_dithering -Wall -ldl -lpthread -lm -c++ ma_dithering.c -o ./bin/ma_dithering_cpp -Wall -ldl -lpthread -lm - -cc ma_duplex.c -o ./bin/ma_duplex -Wall -ldl -lpthread -lm diff --git a/tests/ma_build_tests_mac b/tests/ma_build_tests_mac deleted file mode 100755 index 6dd91343..00000000 --- a/tests/ma_build_tests_mac +++ /dev/null @@ -1,9 +0,0 @@ -cc ma_test_0.c -o ./bin/ma_test_0 -Wall -lpthread -lm -c++ ma_test_0.c -o ./bin/ma_test_0_cpp -Wall -lpthread -lm - -cc ma_profiling.c -o ./bin/ma_profiling -Wall -lpthread -lm -c++ ma_profiling.c -o ./bin/ma_profiling_cpp -Wall -lpthread -lm - -cc ma_dithering.c -o ./bin/ma_dithering -Wall -lpthread -lm -c++ ma_dithering.c -o ./bin/ma_dithering_cpp -Wall -lpthread -lm - diff --git a/tests/ma_build_tests_rpi b/tests/ma_build_tests_rpi deleted file mode 100755 index f848a39d..00000000 --- a/tests/ma_build_tests_rpi +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -cc ma_test_0.c -o ./bin/ma_test_0 -Wall -ldl -lpthread -lm -c++ ma_test_0.c -o ./bin/ma_test_0_cpp -Wall -ldl -lpthread -lm - -cc ma_profiling.c -o ./bin/ma_profiling -Wall -ldl -lpthread -lm -mfpu=neon -O2 -c++ ma_profiling.c -o ./bin/ma_profiling_cpp -Wall -ldl -lpthread -lm -mfpu=neon -O2 - -cc ma_dithering.c -o ./bin/ma_dithering -Wall -ldl -lpthread -lm -c++ ma_dithering.c -o ./bin/ma_dithering_cpp -Wall -ldl -lpthread -lm \ No newline at end of file diff --git a/tests/ma_build_tests_win32.bat b/tests/ma_build_tests_win32.bat deleted file mode 100644 index d905053e..00000000 --- a/tests/ma_build_tests_win32.bat +++ /dev/null @@ -1,14 +0,0 @@ -@echo off -SET c_compiler=gcc -SET cpp_compiler=g++ -SET options=-Wall -@echo on - -%c_compiler% ma_test_0.c -o ./bin/ma_test_0.exe %options% -%cpp_compiler% ma_test_0.cpp -o ./bin/ma_test_0_cpp.exe %options% - -%c_compiler% ma_profiling.c -o ./bin/ma_profiling.exe %options% -s -O2 -%cpp_compiler% ma_profiling.c -o ./bin/ma_profiling_cpp.exe %options% -s -O2 - -%c_compiler% ma_dithering.c -o ./bin/ma_dithering.exe %options% -%cpp_compiler% ma_dithering.c -o ./bin/ma_dithering_cpp.exe %options% \ No newline at end of file