2019-05-19 12:07:45 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2023-01-10 10:18:32 +00:00
|
|
|
all: test vsock_perf
|
2023-10-10 19:15:24 +00:00
|
|
|
test: vsock_test vsock_diag_test vsock_uring_test
|
2023-10-10 19:15:22 +00:00
|
|
|
vsock_test: vsock_test.o vsock_test_zerocopy.o timeout.o control.o util.o msg_zerocopy_common.o
|
2019-12-18 18:07:00 +00:00
|
|
|
vsock_diag_test: vsock_diag_test.o timeout.o control.o util.o
|
2023-10-10 19:15:23 +00:00
|
|
|
vsock_perf: vsock_perf.o msg_zerocopy_common.o
|
2017-10-05 20:46:54 +00:00
|
|
|
|
2025-06-30 16:33:04 +00:00
|
|
|
vsock_test: LDLIBS = -lpthread
|
2023-10-10 19:15:24 +00:00
|
|
|
vsock_uring_test: LDLIBS = -luring
|
|
|
|
|
vsock_uring_test: control.o util.o vsock_uring_test.o timeout.o msg_zerocopy_common.o
|
|
|
|
|
|
2019-12-18 18:06:58 +00:00
|
|
|
CFLAGS += -g -O2 -Werror -Wall -I. -I../../include -I../../../usr/include -Wno-pointer-sign -fno-strict-overflow -fno-strict-aliasing -fno-common -MMD -U_FORTIFY_SOURCE -D_GNU_SOURCE
|
2017-10-05 20:46:54 +00:00
|
|
|
.PHONY: all test clean
|
|
|
|
|
clean:
|
2023-10-10 19:15:24 +00:00
|
|
|
${RM} *.o *.d vsock_test vsock_diag_test vsock_perf vsock_uring_test
|
2017-10-05 20:46:54 +00:00
|
|
|
-include *.d
|
2024-07-10 12:27:28 +00:00
|
|
|
|
|
|
|
|
VSOCK_INSTALL_PATH ?=
|
|
|
|
|
|
|
|
|
|
install: all
|
|
|
|
|
ifdef VSOCK_INSTALL_PATH
|
|
|
|
|
mkdir -p $(VSOCK_INSTALL_PATH)
|
|
|
|
|
install -m 744 vsock_test $(VSOCK_INSTALL_PATH)
|
|
|
|
|
install -m 744 vsock_perf $(VSOCK_INSTALL_PATH)
|
|
|
|
|
install -m 744 vsock_diag_test $(VSOCK_INSTALL_PATH)
|
|
|
|
|
install -m 744 vsock_uring_test $(VSOCK_INSTALL_PATH)
|
|
|
|
|
else
|
|
|
|
|
$(error Error: set VSOCK_INSTALL_PATH to use install)
|
|
|
|
|
endif
|