1all: 2 gcc posix_timers.c -o posix_timers -lrt 3 4run_tests: all 5 ./posix_timers 6 7clean: 8 rm -f ./posix_timers 9