aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/timers/Makefile
blob: 088a791a44cb8553b33c1973d85a9aaf0a58a5d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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

all: ${bins}

run_tests: all
	./posix_timers
	./nanosleep
	./nsleep-lat
	./inconsistency-check
	./raw_skew
clean:
	rm -f ${bins}