summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2019-01-22 20:42:19 +0100
committerNao Pross <naopross@thearcway.org>2019-01-22 20:42:19 +0100
commit14697cc6f0ef262717ee83eceba19d8c53b6b80e (patch)
tree70adac1c58c6855a428d51129ecea3fcc7419377
parentUpdate configure.py to build a static target (diff)
downloadlibwsdl2-14697cc6f0ef262717ee83eceba19d8c53b6b80e.tar.gz
libwsdl2-14697cc6f0ef262717ee83eceba19d8c53b6b80e.zip
Remove test makefile
-rw-r--r--test/makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/makefile b/test/makefile
deleted file mode 100644
index a2d6800..0000000
--- a/test/makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-# Compiler
-CPP := c++
-CFLAGS := -Wall -pedantic -std=c++17 -fPIC -I ../include -DDEBUG
-LFLAGS := ../build/libwrapsdl2.so -lSDL2 -lpthread
-
-SRCS := $(wildcard *.cpp)
-OBJS := $(patsubst %.cpp,build/%.o,$(SRCS))
-
-# Recipes
-all: build/window_test
-
-.PHONY: run
-run: build/window_test
- ./build/window_test
-
-build/window_test: build/window_test.o
- $(CPP) $(CFLAGS) -o $@ $< $(LFLAGS)
-
-build/%.o: %.cpp build
- $(CPP) $(CFLAGS) -o $@ -c $<
-
-build:
- mkdir -p build