commit 2ae4e90eab48bbaeaf4d2e5293569cde0758a9fc
parent 000a182ffddc221d01b79df9677037e9f0b00d60
Author: nsz <nszabolcs@gmail.com>
Date: Mon, 24 Aug 2009 10:47:09 +0200
makefile update
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/Makefile b/Makefile
@@ -23,16 +23,16 @@ profinf: inflate.c deflate.c sflate.c crc.c adler.c
gcc -O3 -fprofile-arcs -ftest-coverage -pg -g -Wall $+
./a.out -d <a.z >/dev/null
gcov -b $+ >/dev/null
- gprof a.out >$<.gprof
-# gcc -g -Wall $<
+ gprof a.out >inflate.gprof
+# gcc -g -Wall $+
# valgrind -v --leak-check=yes ./a.out -d <a.z >/dev/null 2>a.valgrind
# grep ERROR a.valgrind
# grep alloc a.valgrind
rm -f a.out a.valgrind *.gcno *.gcda gmon.out
-profdef: deflate.c inflate.c sflate.c crc.c adler.c
+profdef: inflate.c deflate.c sflate.c crc.c adler.c
gcc -O0 -fprofile-arcs -ftest-coverage -pg -g -Wall $+
./a.out <a.u >/dev/null
gcov -b $+ >/dev/null
- gprof a.out >$<.gprof
+ gprof a.out >deflate.gprof
rm -f a.out *.gcno *.gcda gmon.out