⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.78
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
src
/
linux-headers-6.8.0-1025-azure
/
tools
/
mm
/
View File Name :
Makefile
# SPDX-License-Identifier: GPL-2.0 # Makefile for vm tools # include ../scripts/Makefile.include TARGETS=page-types slabinfo page_owner_sort LIB_DIR = ../lib/api LIBS = $(LIB_DIR)/libapi.a CFLAGS += -Wall -Wextra -I../lib/ -pthread LDFLAGS += $(LIBS) -pthread all: $(TARGETS) $(TARGETS): $(LIBS) $(LIBS): make -C $(LIB_DIR) %: %.c $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) clean: $(RM) page-types slabinfo page_owner_sort make -C $(LIB_DIR) clean sbindir ?= /usr/sbin install: all install -d $(DESTDIR)$(sbindir) install -m 755 -p $(TARGETS) $(DESTDIR)$(sbindir)