]> git.ozlabs.org Git - ppp.git/commitdiff
Initial revision
authorPaul Mackerras <paulus@samba.org>
Mon, 1 May 1995 02:18:01 +0000 (02:18 +0000)
committerPaul Mackerras <paulus@samba.org>
Mon, 1 May 1995 02:18:01 +0000 (02:18 +0000)
aix4/Makefile.top [new file with mode: 0644]
osf1/Makefile [new file with mode: 0644]
osf1/Makefile.top [new file with mode: 0644]

diff --git a/aix4/Makefile.top b/aix4/Makefile.top
new file mode 100644 (file)
index 0000000..1fc37e3
--- /dev/null
@@ -0,0 +1,28 @@
+#
+# ppp top level makefile
+#
+
+BINDIR = /usr/sbin
+DRIVERS = /usr/lib/drivers
+MANDIR = /usr/man
+
+all:
+       cd chat; $(MAKE) all
+       cd pppd; $(MAKE) all
+       cd pppstats; $(MAKE) all
+       cd aix4; $(MAKE) all
+
+install:
+       cd chat; $(MAKE) BINDIR=$(BINDIR) MANDIR=$(MANDIR) install
+       cd pppd; $(MAKE) BINDIR=$(BINDIR) MANDIR=$(MANDIR) install
+       cd pppstats; $(MAKE) BINDIR=$(BINDIR) MANDIR=$(MANDIR) install
+       cd aix4; $(MAKE) BINDIR=$(BINDIR) install
+       [ -d /etc/ppp ] || { mkdir /etc/ppp; echo lock > /etc/ppp/options; }
+
+clean:
+       rm -f *~
+       cd chat; $(MAKE) clean
+       cd pppd; $(MAKE) clean
+       cd pppstats; $(MAKE) clean
+       cd aix4; $(MAKE) clean
+
diff --git a/osf1/Makefile b/osf1/Makefile
new file mode 100644 (file)
index 0000000..b7b294f
--- /dev/null
@@ -0,0 +1,16 @@
+#
+# Dummy Makefile for OSF/1
+#
+# $Id: Makefile,v 1.1 1995/05/01 02:17:20 paulus Exp $
+#
+
+install: 
+       @echo
+       @echo '        Follow the instructions in README.osf to make the kernel'
+       @echo '        drivers for OSF/1.'
+       @echo
+       cp bsd-comp.c ppp_async.c ppp_comp.c /sys/streamsm
+       cp ppp_if.c ppp_init.c vjcompress.c /sys/streamsm
+       cp ../net/if_ppp.h ../net/ppp-comp.h ../net/ppp_defs.h /sys/include/net
+       cp ../net/ppp_str.h ../net/slcompress.h /sys/include/net
+       cp ../net/vjcompress.h /sys/include/net
diff --git a/osf1/Makefile.top b/osf1/Makefile.top
new file mode 100644 (file)
index 0000000..6de1143
--- /dev/null
@@ -0,0 +1,24 @@
+#
+# ppp top level makefile
+#
+
+BINDIR = /usr/local/etc
+MANDIR = /usr/local/man
+
+all:
+       cd chat; $(MAKE) all
+       cd pppd; $(MAKE) all
+       cd pppstats; $(MAKE) all
+
+install:
+       cd chat; $(MAKE) BINDIR=$(BINDIR) MANDIR=$(MANDIR) install
+       cd pppd; $(MAKE) BINDIR=$(BINDIR) MANDIR=$(MANDIR) install
+       cd pppstats; $(MAKE) BINDIR=$(BINDIR) MANDIR=$(MANDIR) install
+       cd osf1; $(MAKE) install
+
+clean:
+       rm -f *~
+       cd chat; $(MAKE) clean
+       cd pppd; $(MAKE) clean
+       cd pppstats; $(MAKE) clean
+