]> git.ozlabs.org Git - ppp.git/blobdiff - pppdump/Makefile.linux
add man page for pppdump and add it to the list of things
[ppp.git] / pppdump / Makefile.linux
diff --git a/pppdump/Makefile.linux b/pppdump/Makefile.linux
new file mode 100644 (file)
index 0000000..69e018a
--- /dev/null
@@ -0,0 +1,15 @@
+CFLAGS= -O -I../include/net
+OBJS = pppdump.o bsd-comp.o deflate.o zlib.o
+
+all:   pppdump
+
+pppdump: $(OBJS)
+       $(CC) -o pppdump $(OBJS)
+
+clean:
+       rm -f pppdump $(OBJS) *~
+
+install:
+       mkdir -p $(BINDIR) $(MANDIR)/man8
+       install -s -c pppdump $(BINDIR)
+       install -c -m 444 pppdump.8 $(MANDIR)/man8
\ No newline at end of file