summaryrefslogtreecommitdiff
path: root/examples/Makefile
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2019-05-13 16:16:07 -0600
committerJens Axboe <axboe@kernel.dk>2019-05-13 16:16:07 -0600
commit0ba9503f793647bfd967da8083a2adf56621307c (patch)
treed0cb567953421723a4f93c6895f47081b48980ff /examples/Makefile
parent40c6f8454b86a5cd3bda63b41b9524ec162e9842 (diff)
Add link SQE support
Just a basic test case that does various forms of linked nops, and a sample bare bones copy program using linked reads and writes. Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 067fb94..6fe9bb9 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -1,10 +1,10 @@
CFLAGS ?= -g -O2 -Wall -D_GNU_SOURCE -L../src/
-all_targets += io_uring-test io_uring-cp
+all_targets += io_uring-test io_uring-cp link-cp
all: $(all_targets)
-test_srcs := io_uring-test.c io_uring-cp.c
+test_srcs := io_uring-test.c io_uring-cp.c link-cp.c
test_objs := $(patsubst %.c,%.ol,$(test_srcs))
@@ -12,6 +12,8 @@ io_uring-test: io_uring-test.c
$(CC) $(CFLAGS) -o $@ io_uring-test.c -luring
io_uring-cp: io_uring-cp.c
$(CC) $(CFLAGS) -o $@ io_uring-cp.c -luring
+link-cp: link-cp.c
+ $(CC) $(CFLAGS) -o $@ link-cp.c -luring
clean:
rm -f $(all_targets) $(test_objs)