mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-02 22:51:15 +00:00

-------------------------------- I've attached a small patch for zebra-pj, which adds the installation of libospf.a libzebra.a, libospfapi.a and the needed headers for ospfapi clients. the headers get installed to /usr/include/ospfd/* and /usr/include/ospfapi.
22 lines
389 B
Makefile
22 lines
389 B
Makefile
## Automake.am for OSPF API client
|
|
|
|
INCLUDES = -I../lib -I../
|
|
|
|
lib_LIBRARIES = libospfapiclient.a
|
|
sbin_PROGRAMS = ospfclient
|
|
|
|
libospfapiclient_a_SOURCES = \
|
|
ospf_apiclient.c
|
|
|
|
ospfapiheaderdir = $(includedir)/ospfapi
|
|
|
|
ospfapiheader_HEADERS = \
|
|
ospf_apiclient.h
|
|
|
|
ospfclient_SOURCES = \
|
|
ospfclient.c $(libospfapiclient_a_SOURCES)
|
|
|
|
ospfclient_LDADD = ../ospfd/libospf.a ../lib/libzebra.a
|
|
|
|
|