summaryrefslogtreecommitdiffhomepage
path: root/test/libsystem_test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/libsystem_test/Makefile')
-rw-r--r--test/libsystem_test/Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/libsystem_test/Makefile b/test/libsystem_test/Makefile
deleted file mode 100644
index a2bb9d4f..00000000
--- a/test/libsystem_test/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-##################################################
-# (c) Amlal El Mahrouss and NeKernel Authors, licensed under the Apache 2.0 license.
-# This file is for libsystem testing.
-##################################################
-
-GCC=x86_64-w64-mingw32-g++ -Wl,-subsystem=17
-LIB=-L../../src/libSystem -lSystem
-STD=-std=c++20 -DKT_TESTING_ENABLED
-INCLUDE=-I../../src -I../../public -I../../public/frameworks/ -I../../
-
-OBJ_FILES = \
- thread.test.exe \
- memory.test.exe \
- io.test.exe
-
-.PHONY: all
-all: $(OBJ_FILES)
-
-%.exe: %.cc
- @echo "==> Building test: $@"
- $(GCC) $(LIB) $< \
- $(STD) $(INCLUDE) -o $(basename $<).exe \ No newline at end of file