mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 00:10:07 +01:00
Update the tests flag to the latest syntax, and make sure we don't run valgrind on distcheck for now, since new valgrind errors may show up when things like glib change.
75 lines
1.3 KiB
Makefile
75 lines
1.3 KiB
Makefile
include $(GLIB_MAKEFILE)
|
|
|
|
SUBDIRS = \
|
|
. \
|
|
include \
|
|
libnm-util \
|
|
libnm-glib \
|
|
introspection \
|
|
src \
|
|
callouts \
|
|
cli \
|
|
tools \
|
|
policy \
|
|
data \
|
|
test \
|
|
po \
|
|
man \
|
|
docs \
|
|
examples \
|
|
vapi
|
|
|
|
DIST_SUBDIRS = $(SUBDIRS) libndp
|
|
|
|
@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=yes \
|
|
--with-udev-dir=$$dc_install_base/lib/udev \
|
|
--with-wext=no \
|
|
--enable-ifcfg-rh \
|
|
--enable-ifcfg-suse \
|
|
--enable-ifupdown \
|
|
--enable-ifnet
|
|
|
|
DISTCLEANFILES = intltool-extract intltool-merge intltool-update
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = NetworkManager.pc
|
|
|
|
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|
|
|
CLEANFILES = cscope.in.out cscope.out cscope.po.out
|
|
|
|
cscope:
|
|
cscope -b -q -R -Iinclude -ssrc -slibnm-glib -slibnm-util -scli/src;
|
|
|
|
libgsystem_srcpath := libgsystem
|
|
libgsystem_cflags := $(GLIB_CFLAGS) -I$(srcdir)/libgsystem
|
|
libgsystem_libs = $(GLIB_LIBS)
|
|
include libgsystem/Makefile-libgsystem.am
|
|
noinst_LTLIBRARIES = libgsystem.la
|
|
|
|
if BUILD_LIBNDP
|
|
noinst_DATA = libndp
|
|
libndp:
|
|
(cd libndp && $(MAKE))
|
|
|
|
clean-local:
|
|
(cd libndp && $(MAKE) clean)
|
|
endif
|
|
|
|
.PHONY: cscope libndp
|