Newer
Older
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
./set-timer-lat
./mqueue-lat
./inconsistency-check
./raw_skew
./threadtest -t 30 -n 8
rm -f ${bins}