]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - tools/io_uring/Makefile
Merge tag 'for-linus-5.2' of git://github.com/cminyard/linux-ipmi
[mirror_ubuntu-jammy-kernel.git] / tools / io_uring / Makefile
CommitLineData
21b4aa5d
JA
1# SPDX-License-Identifier: GPL-2.0
2# Makefile for io_uring test tools
3CFLAGS += -Wall -Wextra -g -D_GNU_SOURCE
4LDLIBS += -lpthread
5
6all: io_uring-cp io_uring-bench
7%: %.c
8 $(CC) $(CFLAGS) -o $@ $^
9
10io_uring-bench: syscall.o io_uring-bench.o
11 $(CC) $(CFLAGS) $(LDLIBS) -o $@ $^
12
13io_uring-cp: setup.o syscall.o queue.o
14
15clean:
16 $(RM) io_uring-cp io_uring-bench *.o
17
18.PHONY: all clean