mirror of
https://github.com/raspberrypi/linux.git
synced 2026-01-05 10:47:34 +00:00
Support building the C YNL userspace library into one big static file. We can then link selftests against it for easy to use C netlink interface. Signed-off-by: Mina Almasry <almasrymina@google.com> Link: https://patch.msgid.link/20240628003253.1694510-14-almasrymina@google.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
22 lines
652 B
Makefile
22 lines
652 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# YNL selftest build snippet
|
|
|
|
# Inputs:
|
|
#
|
|
# YNL_GENS: families we need in the selftests
|
|
# YNL_PROGS: TEST_PROGS which need YNL (TODO, none exist, yet)
|
|
# YNL_GEN_FILES: TEST_GEN_FILES which need YNL
|
|
|
|
YNL_OUTPUTS := $(patsubst %,$(OUTPUT)/%,$(YNL_GEN_FILES))
|
|
|
|
$(YNL_OUTPUTS): $(OUTPUT)/libynl.a
|
|
$(YNL_OUTPUTS): CFLAGS += \
|
|
-I$(top_srcdir)/usr/include/ $(KHDR_INCLUDES) \
|
|
-I$(top_srcdir)/tools/net/ynl/lib/ \
|
|
-I$(top_srcdir)/tools/net/ynl/generated/
|
|
|
|
$(OUTPUT)/libynl.a:
|
|
$(Q)$(MAKE) -C $(top_srcdir)/tools/net/ynl GENS="$(YNL_GENS)" libynl.a
|
|
$(Q)cp $(top_srcdir)/tools/net/ynl/libynl.a $(OUTPUT)/libynl.a
|