diff options
Diffstat (limited to 'tools/testing/selftests/timers/Makefile')
-rw-r--r-- | tools/testing/selftests/timers/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/testing/selftests/timers/Makefile b/tools/testing/selftests/timers/Makefile new file mode 100644 index 000000000000..eb2859f4ad21 --- /dev/null +++ b/tools/testing/selftests/timers/Makefile | |||
@@ -0,0 +1,8 @@ | |||
1 | all: | ||
2 | gcc posix_timers.c -o posix_timers -lrt | ||
3 | |||
4 | run_tests: all | ||
5 | ./posix_timers | ||
6 | |||
7 | clean: | ||
8 | rm -f ./posix_timers | ||