summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/ppp/pppdump/Makefile.linux.makeopt
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/ppp/pppdump/Makefile.linux.makeopt')
-rw-r--r--mdk-stage1/ppp/pppdump/Makefile.linux.makeopt17
1 files changed, 17 insertions, 0 deletions
diff --git a/mdk-stage1/ppp/pppdump/Makefile.linux.makeopt b/mdk-stage1/ppp/pppdump/Makefile.linux.makeopt
new file mode 100644
index 000000000..d02fecde8
--- /dev/null
+++ b/mdk-stage1/ppp/pppdump/Makefile.linux.makeopt
@@ -0,0 +1,17 @@
+CFLAGS= -O -I../include/net
+OBJS = pppdump.o bsd-comp.o deflate.o zlib.o
+
+INSTALL= install
+
+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