blob: fe5f34a28a034dfc57d398e15f82ff7b51bcd48e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#
# libyang user types
#
if LIBYANG_EXT_BUILTIN
lib_libfrr_la_SOURCES += yang/libyang_plugins/frr_user_types.c
else
libyang_plugins_LTLIBRARIES += yang/libyang_plugins/frr_user_types.la
endif
yang_libyang_plugins_frr_user_types_la_CFLAGS = $(WERROR) $(LIBYANG_CFLAGS)
yang_libyang_plugins_frr_user_types_la_LDFLAGS = -avoid-version -module -shared -export-dynamic
yang_libyang_plugins_frr_user_types_la_LIBADD =
yang_libyang_plugins_frr_user_types_la_SOURCES = yang/libyang_plugins/frr_user_types.c
|