2
Makefile
2
Makefile
@@ -12,12 +12,14 @@ default: all
|
|||||||
|
|
||||||
all:
|
all:
|
||||||
@$(MAKE) -C src
|
@$(MAKE) -C src
|
||||||
|
@$(MAKE) -C test
|
||||||
|
|
||||||
install:
|
install:
|
||||||
@$(MAKE) -C src install prefix=$(DESTDIR)$(prefix) includedir=$(DESTDIR)$(includedir) libdir=$(DESTDIR)$(libdir)
|
@$(MAKE) -C src install prefix=$(DESTDIR)$(prefix) includedir=$(DESTDIR)$(includedir) libdir=$(DESTDIR)$(libdir)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@$(MAKE) -C src clean
|
@$(MAKE) -C src clean
|
||||||
|
@$(MAKE) -C test clean
|
||||||
|
|
||||||
tag-archive:
|
tag-archive:
|
||||||
@git tag $(TAG)
|
@git tag $(TAG)
|
||||||
|
|||||||
18
test/Makefile
Normal file
18
test/Makefile
Normal 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)
|
||||||
Reference in New Issue
Block a user