Makefile 340 B

123456789101112131415161718
  1. .PHONY: requirements runtime benchmark power_measurement
  2. all: requirements runtime benchmark power_measurement
  3. requirements:
  4. ./install-requirements.sh
  5. runtime:
  6. ./get-and-compile-runtime.sh
  7. benchmark:
  8. ./get-and-compile-benchmark.sh
  9. power_measurement:
  10. ./get-and-compile-power-utility.sh
  11. clean:
  12. rm -rf build