1CC = $(CROSS_COMPILE)gcc 2BUILD_FLAGS = -DKTEST 3CFLAGS += -O3 -Wl,-no-as-needed -Wall $(BUILD_FLAGS) 4LDFLAGS += -lrt -lpthread 5bins = posix_timers nanosleep inconsistency-check nsleep-lat raw_skew 6 7all: ${bins} 8 9run_tests: all 10 ./posix_timers 11 ./nanosleep 12 ./nsleep-lat 13 ./inconsistency-check 14 ./raw_skew 15clean: 16 rm -f ${bins} 17