diff --git a/test_install/Makefile b/test_install/Makefile deleted file mode 100644 index 29cd81322..000000000 --- a/test_install/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -# -# tests of installed headers and libs -# - -INSTALLDIR = ../install - -.PHONY: all -all: test_sched_include - -test_sched_include: test_sched_include.c - $(CC) -c -I$(INSTALLDIR)/include $< - -.PHONY: clean -clean: - rm -f *.o diff --git a/test_install/test_sched_include.c b/test_install/test_sched_include.c deleted file mode 100644 index aea35680d..000000000 --- a/test_install/test_sched_include.c +++ /dev/null @@ -1,5 +0,0 @@ -// tests that inclusion of openblas_config.h works with musl - -#include - -cpu_set_t* cpu_set = NULL;