mirror of
https://gitee.com/openharmony/third_party_libnl
synced 2024-11-24 02:29:50 +00:00
5535f59746
On a second thought, don't include doc/ in dist at all and distribute it separately. The doc source files are available in the git tree anyway. Signed-off-by: Thomas Graf <tgraf@redhat.com>
27 lines
433 B
Makefile
27 lines
433 B
Makefile
# -*- Makefile -*-
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = include lib man python tests
|
|
|
|
pkgconfig_DATA = libnl-3.0.pc \
|
|
libnl-route-3.0.pc \
|
|
libnl-genl-3.0.pc \
|
|
libnl-nf-3.0.pc
|
|
|
|
if ENABLE_CLI
|
|
SUBDIRS += src
|
|
pkgconfig_DATA += libnl-cli-3.0.pc
|
|
endif
|
|
|
|
|
|
pkgsysconfdir = ${sysconfdir}/libnl
|
|
pkgsysconf_DATA = etc/pktloc etc/classid
|
|
|
|
EXTRA_DIST = \
|
|
$(pkgsysconf_DATA)
|
|
|
|
.PHONY: cscope
|
|
cscope:
|
|
cscope -b -q -R -Iinclude -slib -ssrc;
|