summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2019-01-17 21:40:30 -0700
committerJens Axboe <axboe@kernel.dk>2019-01-17 21:40:30 -0700
commit213d6f39efcfc4a6758d50b383a699b98190aad7 (patch)
tree391bee5bb65c84101b1b76120a495bcd7a889feb /src/Makefile
parent257578052a4dacd891e96e90b7fe775bb73325a5 (diff)
Split src/io_uring.c up
Let's have the various helpers be in usefully named functions, no need to bundle them all into the same one. Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 635f65a..3899680 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -22,7 +22,7 @@ endif
all: $(all_targets)
-liburing_srcs := io_uring.c syscall.c
+liburing_srcs := setup.c queue.c syscall.c
liburing_objs := $(patsubst %.c,%.ol,$(liburing_srcs))
liburing_sobjs := $(patsubst %.c,%.os,$(liburing_srcs))