summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2019-01-25 01:05:29 +0100
committerNao Pross <naopross@thearcway.org>2019-01-25 01:05:29 +0100
commit703067972f2f66e53c944dc1fa202dfda6546e6b (patch)
treed54cc5c8b2c9386a2cef1fb44ab95e0a22b8471d /test
parentMerge remote-tracking branch 'nao/master' (diff)
downloadflatland-703067972f2f66e53c944dc1fa202dfda6546e6b.tar.gz
flatland-703067972f2f66e53c944dc1fa202dfda6546e6b.zip
Delete bin and test/makefile update .gitignore
Diffstat (limited to 'test')
-rw-r--r--test/makefile11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/makefile b/test/makefile
deleted file mode 100644
index f4c4ba1..0000000
--- a/test/makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-
-BIN:= test
-SRC:= main.cpp
-INCLUDE:= -I ../engine/include
-LIBS:= -lSDL ../bin/libflatland.so
-
-$(BIN):
- g++ -o $(BIN) $(SRC) $(INCLUDE) $(LIBS) -std=c++11
-
-all: $(BIN)
-