blob: 8cb7415c55aaf60c9a75378d00b0255c81b37ee1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
TEST_PROGS := gettimeofday context_switch
CFLAGS += -O2
all: $(TEST_PROGS)
$(TEST_PROGS): ../harness.c
context_switch: LDLIBS += -lpthread
include ../../lib.mk
clean:
rm -f $(TEST_PROGS) *.o
|