]> git.ozlabs.org Git - ppp.git/blobdiff - chat/Makefile.linux
pppd man page: Update header to refer to pppd 2.5.x
[ppp.git] / chat / Makefile.linux
diff --git a/chat/Makefile.linux b/chat/Makefile.linux
deleted file mode 100644 (file)
index c74e197..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#      $Id: Makefile.linux,v 1.11 2004/10/29 00:12:27 paulus Exp $
-
-DESTDIR = @DESTDIR@
-BINDIR = $(DESTDIR)/sbin
-MANDIR = $(DESTDIR)/man
-
-CDEF1= -DTERMIOS                       # Use the termios structure
-CDEF2= -DSIGTYPE=void                  # Standard definition
-CDEF3= -UNO_SLEEP                      # Use the usleep function
-CDEF4= -DFNDELAY=O_NDELAY              # Old name value
-CDEFS= $(CDEF1) $(CDEF2) $(CDEF3) $(CDEF4)
-
-COPTS= -O2 -g -pipe $(CDEFS)
-CFLAGS=        $(COPTS) $(CDEFS)
-
-INSTALL= install
-
-all:   chat
-
-chat:  chat.o
-       $(CC) -o chat chat.o
-
-chat.o:        chat.c
-       $(CC) -c $(CFLAGS) -o chat.o chat.c
-
-install: chat
-       mkdir -p $(BINDIR)
-       $(INSTALL) -s -c chat $(BINDIR)
-       $(INSTALL) -c -m 644 chat.8 $(MANDIR)/man8
-
-clean:
-       rm -f chat.o chat *~