summaryrefslogtreecommitdiff
path: root/test/Makefile
blob: 3ec3c4dff199688209948a2066d1044a088fd16e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)