/
githubmirror
/
liburing
Обзор
Документация
Войти
/
githubmirror
/
liburing
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
liburing-2.0
examples/Makefile
29 строк
572 B
Simon Zeni
examples: disable ucontext-cp if ucontext.h is not available
29 окт 2020, 01:32
29 окт 2020, 01:32
1cf969d
Код
Авторство
О чём код?
CPPFLAGS ?= override CPPFLAGS += -D_GNU_SOURCE -I../src/include/ CFLAGS ?= -g -O2 XCFLAGS = override CFLAGS += -Wall -L../src/ include ../Makefile.quiet ifneq ($(MAKECMDGOALS),clean) include ../config-host.mak endif all_targets += io_uring-test io_uring-cp link-cp ifdef CONFIG_HAVE_UCONTEXT all_targets += ucontext-cp endif all: $(all_targets) test_srcs := io_uring-test.c io_uring-cp.c link-cp.c test_objs := $(patsubst %.c,%.ol,$(test_srcs)) %: %.c $(QUIET_CC)$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< -luring $(XCFLAGS) clean: @rm -f $(all_targets) $(test_objs)