projects
/
ppp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
update to 2.3 based on netbsd stuff
[ppp.git]
/
chat
/
Makefile.sol2
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
CFLAGS = -w -DNO_USLEEP
11
12
all: chat
13
14
chat: chat.o
15
$(CC) -o chat chat.o
16
17
install: chat
18
$(INSTALL) -f $(BINDIR) chat
19
$(INSTALL) -m 444 -f $(MANDIR)/man8 chat.8
20
21
clean:
22
rm -f *~ *.o chat