X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=chat%2FMakefile.linux;h=0732ec80dc2736431b1ec9178411ff0bd9e3d100;hp=c4d6bf29721f9f8bb34f8a3b572bd75f0a77a141;hb=HEAD;hpb=b289ec4c473338c67bce0cb5712616da2d2493e8 diff --git a/chat/Makefile.linux b/chat/Makefile.linux deleted file mode 100644 index c4d6bf2..0000000 --- a/chat/Makefile.linux +++ /dev/null @@ -1,28 +0,0 @@ -# $Id: Makefile.linux,v 1.10 2004/01/13 03:57:55 paulus Exp $ - -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 *~