Sha256: dc7a786760b2e04d24a7f4e4d2a484247a87e44396209be4bfd421282f1b24c8
Contents?: true
Size: 833 Bytes
Versions: 1
Compression:
Stored size: 833 Bytes
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 \ poll-bench.c \ send-zerocopy.c \ rsrc-update-bench.c all_targets := ifdef CONFIG_HAVE_UCONTEXT example_srcs += ucontext-cp.c endif all_targets += ucontext-cp example_targets := $(patsubst %.c,%,$(patsubst %.cc,%,$(example_srcs))) all_targets += $(example_targets) all: $(example_targets) %: %.c ../src/liburing.a $(QUIET_CC)$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< $(LDFLAGS) clean: @rm -f $(all_targets) .PHONY: all clean
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
polyphony-1.6 | vendor/liburing/examples/Makefile |