From dfd0b43cbe23d45bdef7e9f5543206e47bcfa2ef Mon Sep 17 00:00:00 2001
From: Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
Date: Fri, 14 Mar 2014 12:56:44 +0100
Subject: [PATCH] add variables for gprof, cg_annotate

---
 boards/native/Makefile.include | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/boards/native/Makefile.include b/boards/native/Makefile.include
index d8683c7e41..37e3b11117 100644
--- a/boards/native/Makefile.include
+++ b/boards/native/Makefile.include
@@ -18,6 +18,8 @@ export DEBUGGER = gdb
 export TERMPROG = $(ELF)
 export FLASHER = true
 export VALGRIND ?= valgrind
+export CGANNOTATE ?= cg_annotate
+export GPROF ?= gprof
 
 # flags:
 export CFLAGS += -Wall -Wextra -pedantic -m32
@@ -80,7 +82,7 @@ term-cachegrind:
 term-gprof: term
 
 eval-gprof:
-	gprof $(ELF) $(shell ls -rt gmon.out* | tail -1)
+	$(GPROF) $(ELF) $(shell ls -rt gmon.out* | tail -1)
 
 eval-cachegrind:
-	cg_annotate $(shell ls -rt cachegrind.out* | tail -1)
+	$(CGANNOTATE) $(shell ls -rt cachegrind.out* | tail -1)
-- 
GitLab