From f9a32298734bfe856d9aaba7191138c900c82d92 Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Sun, 19 Jun 2011 13:13:39 +0200 Subject: [PATCH] Fix gprof target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6c31d89..57f057e 100644 --- a/Makefile +++ b/Makefile @@ -131,7 +131,7 @@ install: $(DYLIBNAME) $(STLIBNAME) $(MAKE) CFLAGS="-m32" LDFLAGS="-m32" gprof: - $(MAKE) CFLAGS="-pg" + $(MAKE) CFLAGS="-pg" LDFLAGS="-pg" gcov: $(MAKE) CFLAGS="-fprofile-arcs -ftest-coverage" LDFLAGS="-fprofile-arcs"