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