aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/rules.mk
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2019-07-17 11:39:45 +0200
committerCyril SIX <cyril.six@kalray.eu>2019-07-17 11:39:45 +0200
commit0f01d44c350ea0c9211c1d464d7e78518302ca2a (patch)
treeb3cd9ebb4131c5319eeda10a5a7c3908b73cddff /test/monniaux/rules.mk
parentd7998266416f7eb35e129c25182c67441ffa2d0a (diff)
downloadcompcert-kvx-0f01d44c350ea0c9211c1d464d7e78518302ca2a.tar.gz
compcert-kvx-0f01d44c350ea0c9211c1d464d7e78518302ca2a.zip
bitsliced-aes done
Diffstat (limited to 'test/monniaux/rules.mk')
-rw-r--r--test/monniaux/rules.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/monniaux/rules.mk b/test/monniaux/rules.mk
index 2bee42f1..9fd20a3d 100644
--- a/test/monniaux/rules.mk
+++ b/test/monniaux/rules.mk
@@ -134,7 +134,11 @@ measures.csv: $(OUTFILES)
@for i in "$(MEASURES)"; do\
first=$$(grep "$$i cycles" $(firstword $(OUTFILES)));\
if test ! -z "$$first"; then\
- line="$(TARGET) $$i";\
+ if [ "$$i" != "time" ]; then\
+ line="$(TARGET) $$i";\
+ else\
+ line="$(TARGET)";\
+ fi;\
$(foreach outfile,$(OUTFILES),line="$$line, $$(grep "$$i cycles" $(outfile) | cut -d':' -f2)"; ):;\
echo "$$line" >> $@;\
fi;\