From b289ec4c473338c67bce0cb5712616da2d2493e8 Mon Sep 17 00:00:00 2001 From: Paul Mackerras Date: Tue, 13 Jan 2004 03:57:55 +0000 Subject: Change some Makefile.linux files to use COPTS and CFLAGS the same way that pppd/Makefile.linux does. --- chat/Makefile.linux | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'chat') diff --git a/chat/Makefile.linux b/chat/Makefile.linux index 6568cbb..c4d6bf2 100644 --- a/chat/Makefile.linux +++ b/chat/Makefile.linux @@ -1,4 +1,4 @@ -# $Id: Makefile.linux,v 1.9 1999/08/13 01:54:32 paulus Exp $ +# $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 @@ -6,7 +6,8 @@ CDEF3= -UNO_SLEEP # Use the usleep function CDEF4= -DFNDELAY=O_NDELAY # Old name value CDEFS= $(CDEF1) $(CDEF2) $(CDEF3) $(CDEF4) -CFLAGS= -O2 -g -pipe $(CDEFS) +COPTS= -O2 -g -pipe $(CDEFS) +CFLAGS= $(COPTS) $(CDEFS) INSTALL= install -- cgit v1.2.1