all:
	gcc posix_timers.c -o posix_timers -lrt

run_tests: all
	./posix_timers

clean:
	rm -f ./posix_timers