mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager
synced 2024-11-05 19:03:31 +00:00
753e81d21f
Add --without-libnm-glib, for people who don't want to build the legacy client libraries. When building with this option, dbus-glib and libdbus are not required.
72 lines
1.2 KiB
Makefile
72 lines
1.2 KiB
Makefile
include $(GLIB_MAKEFILE)
|
|
|
|
SUBDIRS = \
|
|
. \
|
|
include \
|
|
introspection \
|
|
libnm-core \
|
|
libnm \
|
|
src \
|
|
callouts \
|
|
clients \
|
|
tools \
|
|
policy \
|
|
data \
|
|
po \
|
|
man \
|
|
examples
|
|
|
|
if WITH_LEGACY_LIBRARIES
|
|
SUBDIRS += \
|
|
libnm-util \
|
|
libnm-glib
|
|
endif
|
|
|
|
SUBDIRS += \
|
|
docs \
|
|
vapi
|
|
|
|
@GNOME_CODE_COVERAGE_RULES@
|
|
|
|
EXTRA_DIST = \
|
|
CONTRIBUTING \
|
|
NetworkManager.pc.in \
|
|
intltool-extract.in \
|
|
intltool-merge.in \
|
|
intltool-update.in \
|
|
Makefile.glib \
|
|
autogen.sh \
|
|
valgrind.suppressions
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = \
|
|
--enable-tests=yes \
|
|
--with-valgrind=no \
|
|
--enable-gtk-doc \
|
|
--enable-more-warnings=error \
|
|
--with-udev-dir=$$dc_install_base/lib/udev \
|
|
--with-wext=no \
|
|
--enable-ifcfg-rh \
|
|
--enable-ifupdown \
|
|
--enable-ifnet
|
|
|
|
if BUILD_SETTING_DOCS
|
|
dist-check-setting-docs:
|
|
else
|
|
dist-check-setting-docs:
|
|
@echo "*** gobject-introspection and pygobject are needed to run 'make dist'. ***"
|
|
@false
|
|
endif
|
|
|
|
dist: dist-check-setting-docs
|
|
|
|
DISTCLEANFILES = intltool-extract intltool-merge intltool-update
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = NetworkManager.pc
|
|
|
|
CLEANFILES = cscope.in.out cscope.out cscope.po.out
|
|
|
|
cscope:
|
|
cscope -b -q -R -Iinclude -ssrc -slibnm-core -slibnm -slibnm-glib -slibnm-util -sclients;
|
|
|
|
.PHONY: cscope
|