projects
/
ppp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe17491
)
Initial revision
author
Paul Mackerras
<paulus@samba.org>
Thu, 1 Jun 1995 02:11:46 +0000
(
02:11
+0000)
committer
Paul Mackerras
<paulus@samba.org>
Thu, 1 Jun 1995 02:11:46 +0000
(
02:11
+0000)
pppstats/Makefile.svr4
[new file with mode: 0644]
patch
|
blob
diff --git a/pppstats/Makefile.svr4
b/pppstats/Makefile.svr4
new file mode 100644
(file)
index 0000000..
4460754
--- /dev/null
+++ b/
pppstats/Makefile.svr4
@@ -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