summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>1995-06-01 00:48:46 +0000
committerPaul Mackerras <paulus@samba.org>1995-06-01 00:48:46 +0000
commitcd3740b92a553361e11fbbc175e86cdc9563c237 (patch)
treed91f1d15f414b59e37b34b96361bd66c501f15ca /chat
parent3e9ccc01ba91b2b31000b3c51c7434e832dcf4ac (diff)
downloadppp-cd3740b92a553361e11fbbc175e86cdc9563c237.tar.gz
Initial revision
Diffstat (limited to 'chat')
-rw-r--r--chat/Makefile.svr422
1 files changed, 22 insertions, 0 deletions
diff --git a/chat/Makefile.svr4 b/chat/Makefile.svr4
new file mode 100644
index 0000000..e41b630
--- /dev/null
+++ b/chat/Makefile.svr4
@@ -0,0 +1,22 @@
+#
+# Makefile for chat on Solaris 2
+#
+
+BINDIR = /usr/local/bin
+MANDIR = /usr/local/man
+
+INSTALL= /usr/sbin/install
+
+CFLAGS = -w -DNO_USLEEP
+
+all: chat
+
+chat: chat.o
+ $(CC) -o chat chat.o
+
+install: chat
+ $(INSTALL) -f $(BINDIR) chat
+ $(INSTALL) -m 444 -f $(MANDIR)/man8 chat.8
+
+clean:
+ rm -f *~ *.o chat