projects
/
ppp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
set CLOCAL before running connector.
[ppp.git]
/
chat
/
Makefile.svr4
1
#
2
# Makefile for chat on Solaris 2
3
#
4
5
BINDIR = /usr/local/bin
6
MANDIR = /usr/local/man
7
8
INSTALL= /usr/sbin/install
9
10
COPTS = -O -Xa -w
11
CFLAGS = -DNO_USLEEP $(COPTS)
12
13
all: chat
14
15
chat: chat.o
16
$(CC) -o chat chat.o
17
18
install: chat
19
$(INSTALL) -f $(BINDIR) chat
20
$(INSTALL) -m 444 -f $(MANDIR)/man8 chat.8
21
22
clean:
23
rm -f *~ *.o chat