]> git.ozlabs.org Git - ppp.git/blobdiff - chat/Makefile.linux
Makefile.am: Add explicit openssl directory to pppd include path
[ppp.git] / chat / Makefile.linux
diff --git a/chat/Makefile.linux b/chat/Makefile.linux
deleted file mode 100644 (file)
index f082dab..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#      $Id: Makefile.linux,v 1.15 2006/06/04 05:07:46 paulus Exp $
-
-DESTDIR = $(INSTROOT)@DESTDIR@
-BINDIR = $(DESTDIR)/sbin
-MANDIR = $(DESTDIR)/share/man/man8
-
-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
-CFLAGS=        $(COPTS) $(CDEFS)
-
-INSTALL= install
-
-all:   chat
-
-chat:  chat.o
-       $(CC) $(LDFLAGS) -o chat chat.o
-
-chat.o:        chat.c
-       $(CC) -c $(CFLAGS) -o chat.o chat.c
-
-install: chat
-       mkdir -p $(BINDIR) $(MANDIR)
-       $(INSTALL) -c chat $(BINDIR)
-       $(INSTALL) -c -m 644 chat.8 $(MANDIR)
-
-clean:
-       rm -f chat.o chat *~