From: Paul Mackerras Date: Fri, 28 Apr 1995 06:16:43 +0000 (+0000) Subject: fixed install target, added default BINDIR and MANDIR X-Git-Tag: RELEASE_2_3_6~751 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=4bd5ed34d3db5ce0eb1cb7952ce1bbd09a99b048 fixed install target, added default BINDIR and MANDIR --- diff --git a/chat/Makefile.sun b/chat/Makefile.sun index 28ccfa2..45a500f 100644 --- a/chat/Makefile.sun +++ b/chat/Makefile.sun @@ -2,13 +2,19 @@ # Makefile for chat on suns # +BINDIR = /usr/local/etc +MANDIR = /usr/local/man + +INSTALL= install -o root -g daemon + all: chat chat: chat.o $(CC) -o chat chat.o -install: - install -c chat $(BINDIR)/chat +install: chat + $(INSTALL) -c chat $(BINDIR)/chat + $(INSTALL) -c -m 444 chat.8 $(MANDIR)/man8/chat.8 clean: rm -f *~ *.o chat