run.mk: Add target callgrind

This commit is contained in:
Jan Lindemann 2007-12-01 22:43:02 +00:00 committed by Jan Lindemann
commit b581ecc502

View file

@ -23,6 +23,10 @@ valgrind:
rm -f $(CORE)
valgrind $(VALGRIND_OPTS) ./$(EXE) $(EXE_ARGS)
callgrind:
rm -f $(CORE)
valgrind --tool=callgrind $(VALGRIND_OPTS) ./$(EXE) $(EXE_ARGS)
ifeq ($(TARGET),mingw)
run:
@echo "wine $(EXE) $(EXE_ARGS)"