mirror of
https://github.com/openharmony/third_party_liburing.git
synced 2026-07-21 23:26:12 -04:00
4332433754
Use ./configure --cc=whatever to set the compiler. Signed-off-by: Jens Axboe <axboe@kernel.dk>
24 lines
478 B
Makefile
24 lines
478 B
Makefile
CFLAGS ?= -g -O2
|
|
XCFLAGS =
|
|
override CFLAGS += -Wall -D_GNU_SOURCE -L../src/ -I../src/include/
|
|
|
|
include ../Makefile.quiet
|
|
|
|
ifneq ($(MAKECMDGOALS),clean)
|
|
include ../config-host.mak
|
|
endif
|
|
|
|
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)
|