From: Paul Mackerras Date: Thu, 1 Jun 1995 01:32:56 +0000 (+0000) Subject: install man page, defaults for BINDIR and MANDIR X-Git-Tag: RELEASE_2_3_6~682 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=25086326c0e8ea8da2d646dda6ffc8d35173adaa install man page, defaults for BINDIR and MANDIR --- diff --git a/chat/Makefile.ultrix b/chat/Makefile.ultrix index e6a3ef3..a5d2b1f 100644 --- a/chat/Makefile.ultrix +++ b/chat/Makefile.ultrix @@ -2,6 +2,9 @@ # Makefile for chat with ultrix # +BINDIR = /usr/local/etc +MANDIR = /usr/local/man + CFLAGS = -DNO_USLEEP all: chat @@ -11,6 +14,7 @@ chat: chat.o install: chat install -c chat $(BINDIR)/chat + install -c -m 444 chat.8 $(MANDIR)/man8/chat.8 clean: rm -f *~ *.o chat diff --git a/pppstats/Makefile.ultrix b/pppstats/Makefile.ultrix index 3d856fe..063a41e 100644 --- a/pppstats/Makefile.ultrix +++ b/pppstats/Makefile.ultrix @@ -1,8 +1,11 @@ # # pppstats makefile -# $Id: Makefile.ultrix,v 1.3 1995/04/28 06:23:39 paulus Exp $ +# $Id: Makefile.ultrix,v 1.4 1995/06/01 01:32:56 paulus Exp $ # +BINDIR = /usr/local/etc +MANDIR = /usr/local/man + PPPSTATSRCS = pppstats.c PPPSTATOBJS = pppstats.o @@ -17,6 +20,7 @@ all: pppstats install: pppstats install -c pppstats $(BINDIR)/pppstats + install -c -m 444 pppstats.8 $(MANDIR)/man8/pppstats.8 pppstats: $(PPPSTATSRCS) $(CC) $(CFLAGS) -o pppstats pppstats.c $(LIBS)