Add simple test/ Makefile

Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
Jens Axboe
2019-01-08 15:48:57 -07:00
parent 357ca59684
commit baa8d243cc
2 changed files with 20 additions and 0 deletions

View File

@@ -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)

18
test/Makefile Normal file
View File

@@ -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)