kernel: print spurious interrupt message with increasing interval.
[minix.git] / test / select / Makefile
blob08b0c3a58687d3c7b6a5b8201825689f7e36e650
1 # Makefile for the tests
3 CC = exec cc
4 CFLAGS = -Wall -D_MINIX -D_POSIX_SOURCE
6 PROG = speed test00 test01 test02 test03 test04_srv test04_cli test05_srv \
7 test05_cli test06_srv test06_cli test07_srv test07_cli test08_srv \
8 test08_cli test09 test10 test11 test12 test13a test13b test14
10 all: $(PROG)
12 $(PROG):
13 $(CC) $(CFLAGS) -o $@ $@.c -lutil
15 clean:
16 /usr/bin/rm -f *.o $(PROG)
18 speed: speed.c
19 test00: test00.c
20 test01: test01.c
21 test02: test02.c
22 test03: test03.c
23 test04_cli: test04_cli.c
24 test04_srv: test04_srv.c
25 test05_cli: test05_cli.c
26 test05_srv: test05_srv.c
27 test06_cli: test06_cli.c
28 test06_srv: test06_srv.c
29 test07_cli: test07_cli.c
30 test07_srv: test07_srv.c
31 test08_cli: test08_cli.c
32 test08_srv: test08_srv.c
33 test09: test09.c
34 test10: test10.c
35 test11: test11.c
36 test12: test12.c
37 test13a: test13a.c
38 test13b: test13b.c
39 test14: test14.c