Index: makefile
===================================================================
--- makefile	(revision 8a6d19d6c4540451e6eec71a5309028c58372af5)
+++ makefile	(revision 516668e090ff32f4358c33c089b73a527ea50e15)
@@ -10,4 +10,7 @@
 endif
 
+newgame: new-game.cpp
+	$(CC) $? $(DEP) $(CFLAGS) -o $@
+
 game: mygame.cpp common/shader.cpp common/texture.cpp common/controls-new.cpp
 	$(CC) $? $(DEP) $(CFLAGS) -o $@
@@ -17,4 +20,5 @@
 
 clean:
+	rm -f newgame
 	rm -f game
 	rm -f demo
