mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-03 11:01:48 +00:00

Since we're now building through one large Makefile, we can easily put things with their daemons and crossreference nicely. Signed-off-by: David Lamparter <equinox@diac24.net>
32 lines
680 B
Plaintext
32 lines
680 B
Plaintext
#
|
|
# ospfclient
|
|
#
|
|
|
|
if OSPFCLIENT
|
|
lib_LTLIBRARIES += ospfclient/libfrrospfapiclient.la
|
|
sbin_PROGRAMS += ospfclient/ospfclient
|
|
rstman8_DATA += $(MANBUILD)/ospfclient.8
|
|
endif
|
|
|
|
ospfclient_libfrrospfapiclient_la_LDFLAGS = -version-info 0:0:0
|
|
ospfclient_libfrrospfapiclient_la_LIBADD = lib/libfrr.la
|
|
ospfclient_libfrrospfapiclient_la_SOURCES = \
|
|
ospfclient/ospf_apiclient.c \
|
|
# end
|
|
|
|
if OSPFCLIENT
|
|
ospfapiheaderdir = $(pkgincludedir)/ospfapi
|
|
ospfapiheader_HEADERS = \
|
|
ospfclient/ospf_apiclient.h \
|
|
# end
|
|
endif
|
|
|
|
ospfclient_ospfclient_LDADD = \
|
|
ospfclient/libfrrospfapiclient.la \
|
|
lib/libfrr.la \
|
|
@LIBCAP@ \
|
|
# end
|
|
ospfclient_ospfclient_SOURCES = \
|
|
ospfclient/ospfclient.c \
|
|
# end
|