From 60aa929b64739392c4597cca83294cfe5ea64033 Mon Sep 17 00:00:00 2001 From: suhrke Date: Fri, 14 Apr 2017 23:46:06 -0700 Subject: [PATCH] added clean recipe, added maps to gitignore --- ReflexToQ3/.gitignore | 5 ++++- ReflexToQ3/Makefile | 4 ++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ReflexToQ3/.gitignore b/ReflexToQ3/.gitignore index d8171e6..8e52df8 100644 --- a/ReflexToQ3/.gitignore +++ b/ReflexToQ3/.gitignore @@ -2,8 +2,11 @@ *.o *.gch *.exe - *.log # executables reflex2q3_* + +# test maps directory +maps + diff --git a/ReflexToQ3/Makefile b/ReflexToQ3/Makefile index 1b3bf85..e7c6efe 100644 --- a/ReflexToQ3/Makefile +++ b/ReflexToQ3/Makefile @@ -22,3 +22,7 @@ brushdef.o: includes/brushdef.cpp planes.o: includes/planes.cpp $(CC) -c $^ $(CFLAGS) + + +clean: + rm --force $(EXV6) $(EXV8) *.o *.log