summaryrefslogtreecommitdiff
path: root/chat/Makefile.sol2
blob: 60b9b54036c87a19b984faeb167c21a020805bb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# Makefile for chat on Solaris 2
#

BINDIR = /usr/local/bin
MANDIR = /usr/local/man

INSTALL= /usr/sbin/install

COPTS = -O -Xa -w
CFLAGS = $(COPTS) -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