/
githubmirror
/
liburing
Обзор
Документация
Войти
/
githubmirror
/
liburing
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
liburing-0.2
examples/Makefile
19 строк
413 B
Jens Axboe
Makefile: handle quiet AR/RANLIB
22 сен 2019, 19:10
22 сен 2019, 19:10
1cff0db
Код
Авторство
О чём код?
CFLAGS ?= -g -O2 XCFLAGS = override CFLAGS += -Wall -D_GNU_SOURCE -L../src/ -I../src/include/ include ../Makefile.quiet all_targets += io_uring-test io_uring-cp link-cp ucontext-cp 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) $(CFLAGS) -o $@ $< -luring $(XCFLAGS) clean: rm -f $(all_targets) $(test_objs)