projects
/
ppp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Initial revision
[ppp.git]
/
chat
/
Makefile.aix4
1
#
2
# Makefile for chat on AIX 4.1
3
#
4
5
#ifndef BINDIR
6
BINDIR=/usr/sbin
7
#endif
8
9
CC=xlc
10
CFLAGS= -D_NO_PROTO
11
12
all: chat
13
14
chat: chat.o
15
$(CC) -o chat chat.o
16
17
install:
18
install -f $(BINDIR) chat
19
20
clean:
21
rm -f *~ *.o chat