projects
/
ppp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
973fd58
)
Initial revision
author
Paul Mackerras
<paulus@samba.org>
Fri, 27 Oct 1995 03:26:28 +0000
(
03:26
+0000)
committer
Paul Mackerras
<paulus@samba.org>
Fri, 27 Oct 1995 03:26:28 +0000
(
03:26
+0000)
chat/Makefile.sol2
[new file with mode: 0644]
patch
|
blob
diff --git a/chat/Makefile.sol2
b/chat/Makefile.sol2
new file mode 100644
(file)
index 0000000..
e41b630
--- /dev/null
+++ b/
chat/Makefile.sol2
@@ -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