mirror of
https://gitee.com/openharmony/third_party_libnl
synced 2024-11-24 02:29:50 +00:00
a73cb2f269
I observed that with the RedHat build target in the Open Build Service, files were put into /etc rather than /etc/libnl. Self-referential variables are a bad idea, and so just avoid this.
27 lines
409 B
Makefile
27 lines
409 B
Makefile
# -*- Makefile -*-
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
OPT_DIRS =
|
|
|
|
if ENABLE_CLI
|
|
OPT_DIRS += src
|
|
endif
|
|
|
|
SUBDIRS = include lib doc man python $(OPT_DIRS)
|
|
|
|
pkgconfig_DATA = libnl-3.pc \
|
|
libnl-route-3.pc \
|
|
libnl-genl-3.pc \
|
|
libnl-nf-3.pc
|
|
|
|
pkgsysconfdir = ${sysconfdir}/libnl
|
|
pkgsysconf_DATA = etc/pktloc etc/classid
|
|
|
|
EXTRA_DIST = \
|
|
$(sysconf_DATA)
|
|
|
|
.PHONY: cscope
|
|
cscope:
|
|
cscope -b -q -R -Iinclude -slib -ssrc;
|