aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9c9fafe..f79435c 100644
--- a/Makefile
+++ b/Makefile
@@ -82,4 +82,7 @@ $(OUTDIR)/%.$(OBJEXT): $(SRCDIR)/%.$(SRCEXT)
@sed -e 's/.*://' -e 's/\\$$//' < $(OUTDIR)/$*.$(DEPEXT).tmp | fmt -1 | sed -e 's/^ *//' -e 's/$$/:/' >> $(OUTDIR)/$*.$(DEPEXT)
@rm -f $(OUTDIR)/$*.$(DEPEXT).tmp
-.PHONY: all remake clean cleaner resources
+mem: $(EXEC)
+ valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes ./$(EXEC)
+
+.PHONY: all remake clean cleaner resources mem