From 3eb2094c59e89db2bedd401e23c7a870081c9edb Mon Sep 17 00:00:00 2001 From: Bjarke Istrup Pedersen Date: Sun, 9 Feb 2014 11:41:52 +0000 Subject: Adding makefile for tools/hv Currently, there is no makefile for the Hyper-V tools. This patch adds the missing makefile, and adds it to the main tools makefile. Signed-off-by: Bjarke Istrup Pedersen Signed-off-by: Greg Kroah-Hartman --- tools/hv/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tools/hv/Makefile (limited to 'tools/hv/Makefile') diff --git a/tools/hv/Makefile b/tools/hv/Makefile new file mode 100644 index 000000000000..bd22f786a60c --- /dev/null +++ b/tools/hv/Makefile @@ -0,0 +1,13 @@ +# Makefile for Hyper-V tools + +CC = $(CROSS_COMPILE)gcc +PTHREAD_LIBS = -lpthread +WARNINGS = -Wall -Wextra +CFLAGS = $(WARNINGS) -g $(PTHREAD_LIBS) + +all: hv_kvp_daemon hv_vss_daemon +%: %.c + $(CC) $(CFLAGS) -o $@ $^ + +clean: + $(RM) hv_kvp_daemon hv_vss_daemon -- cgit