projects
/
ppp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
45a500f30eba0b454f02242da6c8bade7b6ea94b
[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