1# $Id: Makefile,v 1.2 2002/12/15 19:58:36 marvin Exp $
2
3CC=gcc
4CFLAGS=-Wall -w -pedantic
5
6all: pipebench
7doc: pipebench.1
8install: pipebench
9	cp pipebench /usr/local/bin/
10	cp pipebench.1 /usr/local/man/man1/
11
12pipebench: pipebench.c
13	$(CC) $(CFLAGS) -o pipebench pipebench.c
14
15pipebench.1: pipebench.yodl
16	yodl2man -o pipebench.1 pipebench.yodl
17
18clean:
19	rm -f pipebench *.o
20