X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=chat%2FMakefile.svr4;fp=chat%2FMakefile.svr4;h=e41b63000f5a9112655df5e25f2d3b8de8fd1e26;hp=0000000000000000000000000000000000000000;hb=cd3740b92a553361e11fbbc175e86cdc9563c237;hpb=3e9ccc01ba91b2b31000b3c51c7434e832dcf4ac diff --git a/chat/Makefile.svr4 b/chat/Makefile.svr4 new file mode 100644 index 0000000..e41b630 --- /dev/null +++ b/chat/Makefile.svr4 @@ -0,0 +1,22 @@ +# +# Makefile for chat on Solaris 2 +# + +BINDIR = /usr/local/bin +MANDIR = /usr/local/man + +INSTALL= /usr/sbin/install + +CFLAGS = -w -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