From baa8d243ccffb4d8d45c8b97a9a9c0b7a25ae143 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Tue, 8 Jan 2019 15:48:57 -0700 Subject: Add simple test/ Makefile Signed-off-by: Jens Axboe --- Makefile | 2 ++ test/Makefile | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 test/Makefile diff --git a/Makefile b/Makefile index 88e98c9..0fbd83c 100644 --- a/Makefile +++ b/Makefile @@ -12,12 +12,14 @@ default: all all: @$(MAKE) -C src + @$(MAKE) -C test install: @$(MAKE) -C src install prefix=$(DESTDIR)$(prefix) includedir=$(DESTDIR)$(includedir) libdir=$(DESTDIR)$(libdir) clean: @$(MAKE) -C src clean + @$(MAKE) -C test clean tag-archive: @git tag $(TAG) 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) -- cgit