mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-06 02:30:38 +00:00

Use pkginclude_HEADERS rather than include_HEADERS to place includes in ${prefix}/include/quaggainstead of polluting ${prefix}/include.
22 lines
401 B
Makefile
22 lines
401 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 = $(pkgincludedir)/ospfapi
|
|
|
|
ospfapiheader_HEADERS = \
|
|
ospf_apiclient.h
|
|
|
|
ospfclient_SOURCES = \
|
|
ospfclient.c $(libospfapiclient_a_SOURCES)
|
|
|
|
ospfclient_LDADD = ../ospfd/libospf.a ../lib/libzebra.a @LIBCAP@
|
|
|
|
|