summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>1999-08-12 03:59:07 +0000
committerPaul Mackerras <paulus@samba.org>1999-08-12 03:59:07 +0000
commita8ac4606ea90b5951d701b303e0ddcb87934c9e1 (patch)
tree85cd7721422a4db7115e8c065d312a336350052b /chat
parent5c4194f367dba10e9c6c2e2e6a5030f0d4b603a1 (diff)
downloadppp-a8ac4606ea90b5951d701b303e0ddcb87934c9e1.tar.gz
use $(INSTALL) not install
Diffstat (limited to 'chat')
-rw-r--r--chat/Makefile.linux8
1 files changed, 5 insertions, 3 deletions
diff --git a/chat/Makefile.linux b/chat/Makefile.linux
index bbc1e95..b0a14b9 100644
--- a/chat/Makefile.linux
+++ b/chat/Makefile.linux
@@ -1,4 +1,4 @@
-# $Id: Makefile.linux,v 1.7 1997/11/27 05:59:44 paulus Exp $
+# $Id: Makefile.linux,v 1.8 1999/08/12 03:56:21 paulus Exp $
CDEF1= -DTERMIOS # Use the termios structure
CDEF2= -DSIGTYPE=void # Standard definition
@@ -8,6 +8,8 @@ CDEFS= $(CDEF1) $(CDEF2) $(CDEF3) $(CDEF4)
CFLAGS= -O2 -pipe $(CDEFS)
+INSTALL= install
+
all: chat
chat: chat.o
@@ -18,8 +20,8 @@ chat.o: chat.c
install: chat
mkdir -p $(BINDIR)
- install -s -c chat $(BINDIR)
- install -c -m 644 chat.8 $(MANDIR)/man8
+ $(INSTALL) -s -c chat $(BINDIR)
+ $(INSTALL) -c -m 644 chat.8 $(MANDIR)/man8
clean:
rm -f chat.o chat *~