summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/timers/Makefile
blob: d0bfb2d007cf64e390955915284bee66603e86a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
CC = $(CROSS_COMPILE)gcc
BUILD_FLAGS = -DKTEST
CFLAGS += -O3 -Wl,-no-as-needed -Wall $(BUILD_FLAGS)
LDFLAGS += -lrt -lpthread
bins = posix_timers nanosleep inconsistency-check nsleep-lat raw_skew \
	set-timer-lat threadtest mqueue-lat

all: ${bins}

run_tests: all
	./posix_timers
	./nanosleep
	./nsleep-lat
	./set-timer-lat
	./mqueue-lat
	./inconsistency-check
	./raw_skew
	./threadtest -t 30 -n 8
clean:
	rm -f ${bins}