aboutsummaryrefslogtreecommitdiffstats
path: root/tools/hv/Makefile
diff options
context:
space:
mode:
authorBjarke Istrup Pedersen <gurligebis@gentoo.org>2014-02-09 06:41:52 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-02-15 14:52:35 -0500
commit3eb2094c59e89db2bedd401e23c7a870081c9edb (patch)
tree969814179eedd4eb8361f45d37b712bcee89d9cb /tools/hv/Makefile
parenta7155f4e2252be167fa69468e11b19a3fac5e625 (diff)
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 <gurligebis@gentoo.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/hv/Makefile')
-rw-r--r--tools/hv/Makefile13
1 files changed, 13 insertions, 0 deletions
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 @@
1# Makefile for Hyper-V tools
2
3CC = $(CROSS_COMPILE)gcc
4PTHREAD_LIBS = -lpthread
5WARNINGS = -Wall -Wextra
6CFLAGS = $(WARNINGS) -g $(PTHREAD_LIBS)
7
8all: hv_kvp_daemon hv_vss_daemon
9%: %.c
10 $(CC) $(CFLAGS) -o $@ $^
11
12clean:
13 $(RM) hv_kvp_daemon hv_vss_daemon