projects
/
ppp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
use O_NONBLOCK in preference to FNDELAY; compile in usleep if -DNO_USLEEP
[ppp.git]
/
chat
/
Makefile.sun
1
#
2
# Makefile for chat on suns
3
#
4
5
BINDIR = /usr/local/etc
6
MANDIR = /usr/local/man
7
8
INSTALL= install -o root -g daemon
9
10
all: chat
11
12
chat: chat.o
13
$(CC) -o chat chat.o
14
15
install: chat
16
$(INSTALL) -c chat $(BINDIR)/chat
17
$(INSTALL) -c -m 444 chat.8 $(MANDIR)/man8/chat.8
18
19
clean:
20
rm -f *~ *.o chat