Server : Apache System : Linux iad1-shared-b8-43 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64 User : dh_edsupp ( 6597262) PHP Version : 8.2.26 Disable Function : NONE Directory : /usr/src/linux-headers-5.15.0-153/tools/io_uring/ |
Upload File : |
# SPDX-License-Identifier: GPL-2.0 # Makefile for io_uring test tools CFLAGS += -Wall -Wextra -g -D_GNU_SOURCE LDLIBS += -lpthread all: io_uring-cp io_uring-bench %: %.c $(CC) $(CFLAGS) -o $@ $^ io_uring-bench: syscall.o io_uring-bench.o $(CC) $(CFLAGS) -o $@ $^ $(LDLIBS) io_uring-cp: setup.o syscall.o queue.o clean: $(RM) io_uring-cp io_uring-bench *.o .PHONY: all clean