source: vendor/glibc-tests/glibc/linuxthreads/Examples/Makefile

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 
1CC=gcc
2CFLAGS=-g -O -Wall -I.. -D_REENTRANT
3LIBPTHREAD=../libpthread.a
4
5PROGS=ex1 ex2 ex3 ex4 ex5 proxy
6
7all: $(PROGS)
8
9.c:
10 $(CC) $(CFLAGS) -o $* $*.c $(LIBPTHREAD)
11
12$(PROGS):
13
14clean:
15 rm -f $(PROGS)
Note: See TracBrowser for help on using the repository browser.