Index: makefile
===================================================================
--- makefile	(revision 49756cbc360e89ed36ddedbcedeb7ad5a5f43c24)
+++ makefile	(revision 201e2f8cf64b9ad7cb915d25da198bdfa7d7ba86)
@@ -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
