[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20120301164514.GA24274@gmail.com>
Date: Thu, 1 Mar 2012 17:45:17 +0100
From: "Christoph J. Thompson" <cjsthompson@...il.com>
To: netdev@...r.kernel.org
Subject: [PATCH 2/4] iproute2 - Split up cflags. Allows setting optimisation
flags at compile time without patching the Makefile.
modified: Makefile
Signed-off-by: Christoph J. Thompson <cjsthompson@...il.com>
---
Makefile | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index c6e4943..014d497 100644
--- a/Makefile
+++ b/Makefile
@@ -29,8 +29,10 @@ ADDLIB+=ipx_ntop.o ipx_pton.o
CC = gcc
HOSTCC = gcc
-CCOPTS = -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall
-CFLAGS = $(CCOPTS) -I../include $(DEFINES)
+DEFINES += -D_GNU_SOURCE
+CCOPTS = -O2
+WFLAGS = -Wall -Wstrict-prototypes
+CFLAGS = $(WFLAGS) $(CCOPTS) -I../include $(DEFINES)
YACCFLAGS = -d -t -v
SUBDIRS=lib ip tc misc netem genl
--
1.7.4.4
--
Jabber: heimdal@...ber.org
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists