File: Makefile

package info (click to toggle)
pipebench 0.40-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 168 kB
  • sloc: ansic: 504; makefile: 29
file content (19 lines) | stat: -rw-r--r-- 410 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $Id: Makefile,v 1.2 2002/12/15 19:58:36 marvin Exp $

CC=gcc
CFLAGS+=-Wall -w -pedantic

all: pipebench
doc: pipebench.1
install: pipebench
	cp pipebench $(DESTDIR)/usr/bin/
	cp pipebench.1 $(DESTDIR)/usr/share/man/man1/

pipebench: pipebench.c
	$(CC) $(CFLAGS) $(LDFLAGS) $(CPPFLAGS) -o pipebench pipebench.c

pipebench.1: pipebench.yodl
	yodl2man -o pipebench.1 pipebench.yodl

clean:
	rm -f pipebench *.o