Index: makefile
===================================================================
--- makefile	(revision 49756cbc360e89ed36ddedbcedeb7ad5a5f43c24)
+++ makefile	(revision 363d5ff6cacd07f9ddd87fe6d70dab726a6f90ea)
@@ -13,4 +13,7 @@
 	$(CC) $? $(DEP) $(CFLAGS) -o $@
 
+pong: pong.cpp logger.cpp
+	$(CC) $? $(DEP) $(CFLAGS) -o $@
+
 mygame: mygame.cpp common/shader.cpp common/texture.cpp common/controls-new.cpp
 	$(CC) $? $(DEP) $(CFLAGS) -o $@
@@ -21,4 +24,5 @@
 clean:
 	rm -f newgame
+	rm -f pong
 	rm -f mygame
 	rm -f demo
