summaryrefslogtreecommitdiffstats
path: root/tools/hv
diff options
context:
space:
mode:
authorKamal Mostafa <kamal@canonical.com>2016-01-27 22:29:33 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-02-07 21:34:12 -0800
commit50fe6dd10069e7c062e27f29606f6e91ea979399 (patch)
treef45f24f4dfd69a0e628805fd7eb33e6c92f05f27 /tools/hv
parent7047f17d70fc0599563d30d0791692cb5fe42ae6 (diff)
downloadlinux-0-day-50fe6dd10069e7c062e27f29606f6e91ea979399.tar.gz
linux-0-day-50fe6dd10069e7c062e27f29606f6e91ea979399.tar.xz
tools/hv: Use include/uapi with __EXPORTED_HEADERS__
Use the local uapi headers to keep in sync with "recently" added #define's (e.g. VSS_OP_REGISTER1). Fixes: 3eb2094c59e8 ("Adding makefile for tools/hv") Cc: <stable@vger.kernel.org> Signed-off-by: Kamal Mostafa <kamal@canonical.com> Signed-off-by: K. Y. Srinivasan <kys@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/hv')
-rw-r--r--tools/hv/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/hv/Makefile b/tools/hv/Makefile
index a8ab795569266..a8c4644022a6b 100644
--- a/tools/hv/Makefile
+++ b/tools/hv/Makefile
@@ -5,6 +5,8 @@ PTHREAD_LIBS = -lpthread
WARNINGS = -Wall -Wextra
CFLAGS = $(WARNINGS) -g $(PTHREAD_LIBS) $(shell getconf LFS_CFLAGS)
+CFLAGS += -D__EXPORTED_HEADERS__ -I../../include/uapi -I../../include
+
all: hv_kvp_daemon hv_vss_daemon hv_fcopy_daemon
%: %.c
$(CC) $(CFLAGS) -o $@ $^