41 lines
805 B
Plaintext
41 lines
805 B
Plaintext
$NetBSD: patch-bl,v 1.1.1.1 2005/01/02 02:51:44 cube Exp $
|
|
|
|
--- pppstats/Makefile.netbsd.orig 2004-12-31 23:51:00.000000000 +0100
|
|
+++ pppstats/Makefile.netbsd
|
|
@@ -0,0 +1,35 @@
|
|
+#
|
|
+# pppstats makefile
|
|
+#
|
|
+DESTDIR = @DESTDIR@
|
|
+BINDIR = $(DESTDIR)/sbin
|
|
+MANDIR = $(DESTDIR)/man/man8
|
|
+
|
|
+PPPSTATSRCS = pppstats.c
|
|
+PPPSTATOBJS = pppstats.o
|
|
+
|
|
+#CC = gcc
|
|
+COPTS = -O
|
|
+COMPILE_FLAGS = -I../include
|
|
+LIBS =
|
|
+
|
|
+INSTALL= install
|
|
+
|
|
+CFLAGS = $(COPTS) $(COMPILE_FLAGS)
|
|
+
|
|
+all: pppstats
|
|
+
|
|
+install: pppstats
|
|
+ -mkdir -p $(MANDIR)
|
|
+ $(INSTALL) -s -c pppstats $(BINDIR)
|
|
+ $(INSTALL) -c -m 444 pppstats.8 $(MANDIR)
|
|
+
|
|
+pppstats: $(PPPSTATSRCS)
|
|
+ $(CC) $(CFLAGS) -o pppstats pppstats.c $(LIBS)
|
|
+
|
|
+clean:
|
|
+ rm -f pppstats *~ #* core
|
|
+
|
|
+depend:
|
|
+ cpp -M $(CFLAGS) $(PPPSTATSRCS) >.depend
|
|
+# makedepend $(CFLAGS) $(PPPSTATSRCS)
|