]> git.ozlabs.org Git - ppp.git/commitdiff
Initial revision
authorPaul Mackerras <paulus@samba.org>
Thu, 1 Jun 1995 02:11:46 +0000 (02:11 +0000)
committerPaul Mackerras <paulus@samba.org>
Thu, 1 Jun 1995 02:11:46 +0000 (02:11 +0000)
pppstats/Makefile.svr4 [new file with mode: 0644]

diff --git a/pppstats/Makefile.svr4 b/pppstats/Makefile.svr4
new file mode 100644 (file)
index 0000000..4460754
--- /dev/null
@@ -0,0 +1,24 @@
+#
+# pppstats Makefile for SVR4 systems
+# $Id: Makefile.svr4,v 1.1 1995/06/01 02:11:46 paulus Exp $
+#
+
+BINDIR = /usr/local/bin
+MANDIR = /usr/local/man
+INSTALL = /usr/sbin/install
+
+CC = gcc
+COPTS = -g -O
+CFLAGS = -I.. $(COPTS)
+
+all: pppstats
+
+pppstats: pppstats.c
+       $(CC) $(CFLAGS) -o pppstats pppstats.c
+
+install: pppstats
+       $(INSTALL) -f $(BINDIR) pppstats
+       $(INSTALL) -m 444 -f $(MANDIR)/man8 pppstats.8
+
+clean:
+       rm -f pppstats *~ core