From c6a1f997586df8332e436eae5a430219e3163d45 Mon Sep 17 00:00:00 2001 From: Markus Hitter Date: Fri, 24 Jul 2015 15:17:43 +0200 Subject: [PATCH] Makefile-common: add perf. measurement config to regressiontests. --- Makefile-common | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile-common b/Makefile-common index 28fb1f5..da98adc 100644 --- a/Makefile-common +++ b/Makefile-common @@ -126,6 +126,9 @@ regressiontests: # Generic Teensy2 configuration, which uses USB_SERIAL. $(MAKE) -f Makefile-AVR USER_CONFIG=testcases/config.regtest-teensy2.h \ MCU=atmega32u4 F_CPU=16000000UL EXTRA_CFLAGS=-Werror all + # The configuration used for performance measurements. + $(MAKE) -f Makefile-AVR USER_CONFIG=testcases/config.h.Profiling \ + MCU=atmega644 F_CPU=20000000UL EXTRA_CFLAGS=-Werror all # Don't forget the hostside simulator. $(MAKE) -f Makefile-SIM USER_CONFIG=testcases/config.regtest-gen7.h \ EXTRA_CFLAGS=-Werror all