selftests/timers: Add nanosleep test from timetest suite
[deliverable/linux.git] / tools / testing / selftests / timers / Makefile
1 CC = $(CROSS_COMPILE)gcc
2 BUILD_FLAGS = -DKTEST
3 CFLAGS += -O3 -Wl,-no-as-needed -Wall $(BUILD_FLAGS)
4 LDFLAGS += -lrt -lpthread
5 bins = posix_timers nanosleep
6
7 all: ${bins}
8
9 run_tests: all
10 ./posix_timers
11 ./nanosleep
12
13 clean:
14 rm -f ${bins}
This page took 0.031943 seconds and 5 git commands to generate.