]> git.ozlabs.org Git - ppp.git/blob - pppstats/Makefile.svr4
got the patch for OSF/1 wrong before.
[ppp.git] / pppstats / Makefile.svr4
1 #
2 # pppstats Makefile for SVR4 systems
3 # $Id: Makefile.svr4,v 1.1 1995/06/01 02:11:46 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)
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