summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>2004-01-13 03:57:55 +0000
committerPaul Mackerras <paulus@samba.org>2004-01-13 03:57:55 +0000
commitb289ec4c473338c67bce0cb5712616da2d2493e8 (patch)
treeb35a74e40dd35a409b39cddd0f59e0ad7e549bb7 /chat
parent968c0d2221f53d7de4abf422caed01c079c20e2c (diff)
downloadppp-b289ec4c473338c67bce0cb5712616da2d2493e8.tar.gz
Change some Makefile.linux files to use COPTS and CFLAGS the same way
that pppd/Makefile.linux does.
Diffstat (limited to 'chat')
-rw-r--r--chat/Makefile.linux5
1 files changed, 3 insertions, 2 deletions
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