| Rev | Line |  | 
|---|
| [9] | 1 | # Makefile for the tests | 
|---|
|  | 2 |  | 
|---|
|  | 3 | CC = exec cc | 
|---|
|  | 4 | CFLAGS = -Wall -D_MINIX -D_POSIX_SOURCE | 
|---|
|  | 5 |  | 
|---|
|  | 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 | 
|---|
|  | 9 |  | 
|---|
|  | 10 | all: $(PROG) | 
|---|
|  | 11 |  | 
|---|
|  | 12 | $(PROG): | 
|---|
|  | 13 | $(CC) $(CFLAGS) -o $@ $@.c -lutil | 
|---|
|  | 14 |  | 
|---|
|  | 15 | clean: | 
|---|
|  | 16 | /usr/bin/rm -f *.o $(PROG) | 
|---|
|  | 17 |  | 
|---|
|  | 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 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.