source: trunk/minix/test/select/Makefile@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 855 bytes
Line 
1# Makefile for the tests
2
3CC = exec cc
4CFLAGS = -Wall -D_MINIX -D_POSIX_SOURCE
5
6PROG = 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
9
10all: $(PROG)
11
12$(PROG):
13 $(CC) $(CFLAGS) -o $@ $@.c -lutil
14
15clean:
16 /usr/bin/rm -f *.o $(PROG)
17
18speed: speed.c
19test00: test00.c
20test01: test01.c
21test02: test02.c
22test03: test03.c
23test04_cli: test04_cli.c
24test04_srv: test04_srv.c
25test05_cli: test05_cli.c
26test05_srv: test05_srv.c
27test06_cli: test06_cli.c
28test06_srv: test06_srv.c
29test07_cli: test07_cli.c
30test07_srv: test07_srv.c
31test08_cli: test08_cli.c
32test08_srv: test08_srv.c
33test09: test09.c
34test10: test10.c
35test11: test11.c
36test12: test12.c
37test13a: test13a.c
38test13b: test13b.c
39test14: test14.c
Note: See TracBrowser for help on using the repository browser.