bench: simplify the rand target

* etc/bench.pl.in: There is no need to recompile the bench cases
themselves.
This commit is contained in:
Akim Demaille
2020-06-29 07:43:15 +02:00
parent 2b518d621f
commit cd6ef1e7d7

View File

@@ -954,9 +954,11 @@ EOF
bench: main
\t./main \$(BENCHFLAGS) | tee -a README.md
# Link the bench cases in a different order to run the bench case in a
# different order.
.PHONY: rand
rand:
\t-rm main \$(OBJECTS)
\t-rm main
\tmake bench OBJECTS="\$\$(shuf -e \$(OBJECTS) | xargs)"
EOF