fcb7c2fcafe57b49671d296ce12891b9b9157ec6
[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 inconsistency-check
6
7 all: ${bins}
8
9 run_tests: all
10 ./posix_timers
11 ./nanosleep
12 ./inconsistency-check
13 clean:
14 rm -f ${bins}
This page took 0.029845 seconds and 4 git commands to generate.