aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/Makefile
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/libxc/Makefile
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/libxc/Makefile')
-rw-r--r--tools/libxc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxc/Makefile b/tools/libxc/Makefile
index 07156118ad..37cc93596f 100644
--- a/tools/libxc/Makefile
+++ b/tools/libxc/Makefile
@@ -68,7 +68,7 @@ OSDEP_SRCS-y += xenctrl_osdep_ENOSYS.c
-include $(XEN_TARGET_ARCH)/Makefile
CFLAGS += -Werror -Wmissing-prototypes
-CFLAGS += $(INCLUDES) -I. -I../include
+CFLAGS += -I. -I../include
# Needed for posix_fadvise64() in xc_linux.c
CFLAGS-$(CONFIG_Linux) += -D_GNU_SOURCE