run.mk: Add target valgrind

This commit is contained in:
Jan Lindemann 2006-09-27 10:46:16 +00:00 committed by Jan Lindemann
commit ef6c022af3

View file

@ -16,6 +16,9 @@ export LD_LIBRARY_PATH=$(shell echo $(strip $(LD_LIB_PATH):$(LD_LIB_PATH_ORIG))
all:
install:
valgrind:
rm -f $(CORE)
valgrind ./$(EXE) $(EXE_ARGS)
run:
rm -f $(CORE)
./$(EXE) $(EXE_ARGS)