aboutsummaryrefslogtreecommitdiffstats
path: root/tools/misc
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2011-03-21 17:45:50 +0000
committerIan Campbell <ian.campbell@citrix.com>2011-03-21 17:45:50 +0000
commit31353077608ff9fed9e0ab184f95deddce2231a3 (patch)
treef465f410f24ebfcc3db8ba1b3b2b708d17ef67b3 /tools/misc
parentc08957dc4e8397fc0b8f15c79e88e431eb8fabe7 (diff)
downloadxen-31353077608ff9fed9e0ab184f95deddce2231a3.tar.gz
xen-31353077608ff9fed9e0ab184f95deddce2231a3.tar.bz2
xen-31353077608ff9fed9e0ab184f95deddce2231a3.zip
tools: Drop use of $(INCLUDES)
Several places include it in CFLAGS even though it is never defined. A few others use it as nothing more than a gathering point for CFLAGS. Get rid of it. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/misc')
-rw-r--r--tools/misc/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/tools/misc/Makefile b/tools/misc/Makefile
index 549ee7d3d5..c9ccae22b0 100644
--- a/tools/misc/Makefile
+++ b/tools/misc/Makefile
@@ -1,12 +1,11 @@
XEN_ROOT=$(CURDIR)/../..
include $(XEN_ROOT)/tools/Rules.mk
-CFLAGS += -Werror
+CFLAGS += -Werror
-INCLUDES += -I $(XEN_XC)
-INCLUDES += -I $(XEN_LIBXC)
-INCLUDES += -I $(XEN_INCLUDE)
-CFLAGS += $(INCLUDES)
+CFLAGS += -I $(XEN_XC)
+CFLAGS += -I $(XEN_LIBXC)
+CFLAGS += -I $(XEN_INCLUDE)
HDRS = $(wildcard *.h)