forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
- Loading branch information
Showing
2 changed files
with
19 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |