Makefile 360 B

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