Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=f46a860385faee9fb2137a9b5b9c02c98f5bdeb7
commit f46a860385faee9fb2137a9b5b9c02c98f5bdeb7 Author: James Buren <[email protected]> Date: Tue Aug 14 15:19:48 2012 -0500 add make target for valgrind debugging diff --git a/Makefile b/Makefile index 92f718a..f945ab4 100644 --- a/Makefile +++ b/Makefile @@ -11,5 +11,8 @@ OBJECTS := $(patsubst %.c,%.o,$(SOURCES)) fwsetup: $(OBJECTS) $(CC) $(LDFLAGS) $^ -o $@ +valgrind: fwsetup + valgrind --leak-check=full --show-reachable=yes --log-file=valgrind.log ./fwsetup + clean: $(RM) $(OBJECTS) fwsetup _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
