blob: fcb7c2fcafe57b49671d296ce12891b9b9157ec6 [file] [log] [blame]
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
all: ${bins}
run_tests: all
./posix_timers
./nanosleep
./inconsistency-check
clean:
rm -f ${bins}