mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-18 15:56:54 +00:00
The daemons allow proper shutdown of a VM, heartbeats, inquiring and setting the network configuratio etc etc. They are only started with running in a Hyper-V VM Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
14 lines
315 B
Makefile
14 lines
315 B
Makefile
# Makefile for Hyper-V tools
|
|
|
|
CC = $(CROSS_COMPILE)gcc
|
|
PTHREAD_LIBS = -lpthread
|
|
WARNINGS = -Wall -Wextra
|
|
CFLAGS = $(WARNINGS) -g $(PTHREAD_LIBS) $(shell getconf LFS_CFLAGS)
|
|
|
|
all: hv_kvp_daemon hv_vss_daemon hv_fcopy_daemon
|
|
%: %.c
|
|
$(CC) $(CFLAGS) -o $@ $^
|
|
|
|
clean:
|
|
$(RM) hv_kvp_daemon hv_vss_daemon hv_fcopy_daemon
|