Sha256: 1eb39ecbc9bec5b0fa78c07ba4e09c3c60c01efb5178df9c74c88b5bd2a38b01

Contents?: true

Size: 1 KB

Versions: 5

Compression:

Stored size: 1 KB

Contents

CPPFLAGS ?=
override CPPFLAGS += -D_GNU_SOURCE -I../src/include/
CFLAGS ?= -g -O2 -Wall
LDFLAGS ?=
override LDFLAGS += -L../src/ -luring

include ../Makefile.quiet

ifneq ($(MAKECMDGOALS),clean)
include ../config-host.mak
endif

LDFLAGS ?=
override LDFLAGS += -L../src/ -luring -lpthread

example_srcs := \
	io_uring-close-test.c \
	io_uring-cp.c \
	io_uring-test.c \
	io_uring-udp.c \
	link-cp.c \
	napi-busy-poll-client.c \
	napi-busy-poll-server.c \
	poll-bench.c \
	send-zerocopy.c \
	rsrc-update-bench.c \
	proxy.c

all_targets :=


ifdef CONFIG_HAVE_UCONTEXT
	example_srcs += ucontext-cp.c
endif
all_targets += ucontext-cp helpers.o

example_targets := $(patsubst %.c,%,$(patsubst %.cc,%,$(example_srcs)))
all_targets += $(example_targets)

helpers = helpers.o

all: $(example_targets)

helpers.o: helpers.c
	$(QUIET_CC)$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ -c $<

%: %.c $(helpers) ../src/liburing.a
	$(QUIET_CC)$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< $(helpers) $(LDFLAGS)

clean:
	@rm -f $(all_targets)

.PHONY: all clean

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
uringmachine-0.3 vendor/liburing/examples/Makefile
uringmachine-0.2 vendor/liburing/examples/Makefile
uringmachine-0.1 vendor/liburing/examples/Makefile
iou-0.2 vendor/liburing/examples/Makefile
iou-0.1 vendor/liburing/examples/Makefile