]> git.ozlabs.org Git - ppp.git/blob - pppstats/Makefile.svr4
37165bdd954b260c9ddb2da4577f5d75324debe6
[ppp.git] / pppstats / Makefile.svr4
1 #
2 # pppstats Makefile for SVR4 systems
3 # $Id: Makefile.svr4,v 1.2 1996/07/01 01:22:16 paulus Exp $
4 #
5
6 BINDIR = /usr/local/bin
7 MANDIR = /usr/local/man
8 INSTALL = /usr/sbin/install
9
10 CC = gcc
11 COPTS = -g -O
12 CFLAGS = -I.. $(COPTS) -DSTREAMS
13
14 all: pppstats
15
16 pppstats: pppstats.c
17         $(CC) $(CFLAGS) -o pppstats pppstats.c
18
19 install: pppstats
20         $(INSTALL) -f $(BINDIR) pppstats
21         $(INSTALL) -m 444 -f $(MANDIR)/man8 pppstats.8
22
23 clean:
24         rm -f pppstats *~ core