aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/timers/Makefile
blob: e65c543ad03cc8d5cda59eea2f1d034705332936 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC = $(CROSS_COMPILE)gcc
BUILD_FLAGS = -DKTEST
CFLAGS += -O3 -Wl,-no-as-needed -Wall $(BUILD_FLAGS)
LDFLAGS += -lrt -lpthread
bins = posix_timers

all: ${bins}

run_tests: all
	./posix_timers

clean:
	rm -f ${bins}