]> 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 7f9cbb3..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#      $Id: Makefile.linux,v 1.5 1995/12/18 03:32:43 paulus Exp $
-
-CDEF1= -DTERMIOS                       # Use the termios structure
-CDEF2= -DPIDSTRING                     # I like ascii pid values
-CDEF3= -DSIGTYPE=void                  # Standard definition
-CDEF4= -UNO_SLEEP                      # Use the usleep function
-CDEF5= -DFNDELAY=O_NDELAY              # Old name value
-CDEFS= $(CDEF1) $(CDEF2) $(CDEF3) $(CDEF4) $(CDEF5)
-
-CFLAGS=        -O2 $(CDEFS)
-
-all:   chat
-
-chat:  chat.o
-       $(CC) -O2 -o chat chat.o
-
-chat.o:        chat.c
-       $(CC) -c $(CFLAGS) -o chat.o chat.c
-
-install: chat
-       mkdir -p $(BINDIR)
-       install -c chat $(BINDIR)
-       install -c chat.8 $(MANDIR)/man8
-
-clean:
-       rm -f chat.o chat *~