OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
tools
/
hv
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
Makefile
355 bytes
06/16/2023 05:32:39 PM
rw-r--r--
📄
hv_get_dhcp_info.sh
930 bytes
01/28/2018 09:20:33 PM
rwxr-xr-x
📄
hv_get_dns_info.sh
622 bytes
01/28/2018 09:20:33 PM
rwxr-xr-x
📄
hv_set_ifconfig.sh
1.84 KB
01/28/2018 09:20:33 PM
rwxr-xr-x
Editing: Makefile
Close
# SPDX-License-Identifier: GPL-2.0 # Makefile for Hyper-V tools WARNINGS = -Wall -Wextra CFLAGS = $(WARNINGS) -g $(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 $@ $^ clean: $(RM) hv_kvp_daemon hv_vss_daemon hv_fcopy_daemon