123456789101112131415161718 |
- .PHONY: requirements runtime benchmark power_measurement
- all: requirements runtime benchmark power_measurement
- requirements:
- deploy/install-requirements.sh
- runtime:
- deploy/get-and-compile-runtime.sh
- benchmark:
- deploy/get-and-compile-benchmark.sh
- power_measurement:
- deploy/get-and-compile-power-utility.sh
- clean:
- rm -rf build
|