rnd-20071029-1-src
[rocksndiamonds.git] / src / Makefile
index a7c587c2c5ce7b4ccd1e5ff9590cdfeb9b637fbc..365c417c9559aa538309bfad0422368697c2a363 100644 (file)
@@ -306,6 +306,20 @@ clean-bin:
 clean: clean-obj clean-ico clean-bin
 
 
+# -----------------------------------------------------------------------------
+# run and test targets
+# -----------------------------------------------------------------------------
+
+run: all
+       cd .. && ./$(PROGBASE) --verbose
+
+gdb: all
+       cd .. && gdb -batch -x GDB_COMMANDS ./$(PROGBASE)
+
+valgrind: all
+       cd .. && valgrind -v --leak-check=yes ./$(PROGBASE) 2> valgrind.out
+
+
 # -----------------------------------------------------------------------------
 # development only
 # -----------------------------------------------------------------------------