diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-01-08 15:48:57 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-01-08 15:49:32 -0700 |
commit | baa8d243ccffb4d8d45c8b97a9a9c0b7a25ae143 (patch) | |
tree | ea274011f73400a106b9ab4110e478058662cfe4 /test | |
parent | 357ca596841f07d10cc1cbdcd227fc0edb6550d8 (diff) |
Add simple test/ Makefile
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 0000000..3ec3c4d --- /dev/null +++ b/test/Makefile @@ -0,0 +1,18 @@ +CC = gcc +CFLAGS ?= -g -O2 -Wall -D_GNU_SOURCE -L../src/ + +all_targets += io_uring-test io_uring-cp + +all: $(all_targets) + +test_srcs := io_uring-test.c io_uring-cp.c + +test_objs := $(patsubst %.c,%.ol,$(test_srcs)) + +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 + +clean: + rm -f $(all_targets) $(test_objs) |