From: Paul Mackerras Date: Wed, 24 Mar 1999 23:39:57 +0000 (+0000) Subject: need these too X-Git-Tag: ppp-2.4.7~769 X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=5bd118a338f500c2b0e5e6b819f7f3e093790093;hp=f409b9f7b070fc7e0d1839f09d813503d7224df6 need these too --- diff --git a/pppdump/.cvsignore b/pppdump/.cvsignore new file mode 100644 index 0000000..f122623 --- /dev/null +++ b/pppdump/.cvsignore @@ -0,0 +1 @@ +pppdump diff --git a/pppdump/Makefile b/pppdump/Makefile new file mode 100644 index 0000000..2532fac --- /dev/null +++ b/pppdump/Makefile @@ -0,0 +1,12 @@ +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: