Last change
on this file was 2036, checked in by bird, 20 years ago |
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
201 bytes
|
Line | |
---|
1 | CC=gcc
|
---|
2 | CFLAGS=-g -O -Wall -I.. -D_REENTRANT
|
---|
3 | LIBPTHREAD=../libpthread.a
|
---|
4 |
|
---|
5 | PROGS=ex1 ex2 ex3 ex4 ex5 proxy
|
---|
6 |
|
---|
7 | all: $(PROGS)
|
---|
8 |
|
---|
9 | .c:
|
---|
10 | $(CC) $(CFLAGS) -o $* $*.c $(LIBPTHREAD)
|
---|
11 |
|
---|
12 | $(PROGS):
|
---|
13 |
|
---|
14 | clean:
|
---|
15 | rm -f $(PROGS)
|
---|
Note:
See
TracBrowser
for help on using the repository browser.