]> git.ozlabs.org Git - ppp.git/blobdiff - chat/Makefile.NeXT
Remove files that don't go into releases
[ppp.git] / chat / Makefile.NeXT
diff --git a/chat/Makefile.NeXT b/chat/Makefile.NeXT
deleted file mode 100644 (file)
index 4cf9741..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#
-# Makefile for chat on NeXTs
-# 
-# $Id: Makefile.NeXT,v 1.4 1998/03/25 03:18:32 paulus Exp $
-#
-
-ARCHFLAGS = 
-BINDIR = /usr/local/ppp/bin
-MANDIR = /usr/local/ppp/man
-
-CFLAGS=        -O -D_POSIX_SOURCE $(ARCHFLAGS)
-
-SRCS =  chat.c
-OBJS =  chat.o
-LIBS =   ../NeXT/libposix/libposix.o
-
-MANPAGES = chat.8
-
-
-#
-# Load dependencies
-#
-all:   chat
-
-chat:  $(OBJS)
-       $(CC) -o chat $(CFLAGS) $(OBJS) $(LIBS)
-
-install:
-       /bin/mkdirs $(MANDIR)/man8 $(BINDIR) 
-       install -c -s -m 555 -o root -g wheel chat $(BINDIR)/chat
-       install -c -m 444 -o root -g wheel chat.8 $(MANDIR)/man8
-
-clean:
-       rm -f *~ *.o chat
-