diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-04-17 17:38:14 +0000 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-04-17 11:39:39 -0600 |
commit | 4916320ec374cc5d2b4062c48d2e4c576472b739 (patch) | |
tree | 5f6fd8bdc735da53000e3a03bedf9b564e148f0f /examples/Makefile | |
parent | 76b61ebf1bd17d3a31c3bf2d8236b9bd50d0f9a8 (diff) |
Separate test cases from examples
Also adds a runtests makefile target.
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile new file mode 100644 index 0000000..067fb94 --- /dev/null +++ b/examples/Makefile @@ -0,0 +1,17 @@ +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) |