X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=osf1%2FMakefile.top;fp=osf1%2FMakefile.top;h=6de114396a1ea14a275b4dcfdcba888c5bb8910e;hb=6f128c3ca8cc4d4294ae9932b3b44201d8e9151f;hp=0000000000000000000000000000000000000000;hpb=4b83b62a00317f033fcb3905605149a3f539719e;p=ppp.git diff --git a/osf1/Makefile.top b/osf1/Makefile.top new file mode 100644 index 0000000..6de1143 --- /dev/null +++ b/osf1/Makefile.top @@ -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 +