mirror of
https://github.com/paulusmack/ppp.git
synced 2024-12-18 16:43:33 +08:00
20 lines
257 B
Makefile
20 lines
257 B
Makefile
#
|
|
# Makefile for chat on Solaris 2
|
|
#
|
|
|
|
include ../svr4/Makedefs
|
|
|
|
CFLAGS = -DNO_USLEEP $(COPTS)
|
|
|
|
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
|