e65c543ad03cc8d5cda59eea2f1d034705332936
[deliverable/linux.git] / tools / testing / selftests / timers / Makefile
1 CC = $(CROSS_COMPILE)gcc
2 BUILD_FLAGS = -DKTEST
3 CFLAGS += -O3 -Wl,-no-as-needed -Wall $(BUILD_FLAGS)
4 LDFLAGS += -lrt -lpthread
5 bins = posix_timers
6
7 all: ${bins}
8
9 run_tests: all
10 ./posix_timers
11
12 clean:
13 rm -f ${bins}
This page took 0.031748 seconds and 4 git commands to generate.