mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-26 15:50:07 +01:00
And change src/main.c to use the local allocation macros. This results in much cleaner code, as one can see from the diff. Because libgsystem is designed for nonrecursive make, it fits best in the current recursive setup if we build . first. This will be a lot nicer when we switch NM to a nonrecursive setup.
62 lines
1.1 KiB
Makefile
62 lines
1.1 KiB
Makefile
include $(GLIB_MAKEFILE)
|
|
|
|
SUBDIRS = \
|
|
. \
|
|
include \
|
|
libnm-util \
|
|
libnm-glib \
|
|
introspection \
|
|
src \
|
|
callouts \
|
|
cli \
|
|
tools \
|
|
policy \
|
|
data \
|
|
test \
|
|
po \
|
|
man \
|
|
docs \
|
|
examples \
|
|
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 = \
|
|
--with-tests=yes \
|
|
--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
|
|
|
|
.PHONY: cscope
|
|
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
|