mirror of
https://gitee.com/openharmony/third_party_libnl
synced 2024-11-28 04:30:23 +00:00
3229b32e39
- Bump interface number, we will break API in the development tree
21 lines
286 B
Makefile
21 lines
286 B
Makefile
# -*- Makefile -*-
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
OPT_DIRS =
|
|
|
|
if ENABLE_CLI
|
|
OPT_DIRS += src
|
|
endif
|
|
|
|
SUBDIRS = include lib doc $(OPT_DIRS)
|
|
|
|
pkgconfig_DATA = libnl-2.1.pc
|
|
|
|
sysconfdir = @sysconfdir@/libnl
|
|
sysconf_DATA = etc/pktloc
|
|
|
|
.PHONY: cscope
|
|
cscope:
|
|
cscope -b -q -R -Iinclude -slib -ssrc;
|