third_party_libnl/Makefile.am
Jan Engelhardt a73cb2f269 build: always install files into /etc/libnl
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.
2011-09-13 13:19:26 +02:00

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;