all: wakeup-latency

wakeup-latency: wakeup-latency.c
	gcc -lm -lrt -o wakeup-latency wakeup-latency.c

.PHONY: clean

clean:
	rm -rf wakeup-latency
