summaryrefslogtreecommitdiff
path: root/pppdump
diff options
context:
space:
mode:
Diffstat (limited to 'pppdump')
-rw-r--r--pppdump/.cvsignore1
-rw-r--r--pppdump/Makefile12
2 files changed, 13 insertions, 0 deletions
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: