OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
tools
/
hv
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📄
Makefile
355 bytes
11/01/2022 04:52:05 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