mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 16:30:07 +01:00
Clean up handling of "special" keys in keyfiles, ie ones that need more processing than the basic GKeyFile API supports. Add MAC address reading (writing support to come). Additionally, add some test bits for the keyfile plugin that get run on 'make check'.
60 lines
1.2 KiB
Makefile
60 lines
1.2 KiB
Makefile
if WITH_DOCS
|
|
|
|
all:
|
|
|
|
XSLTPROC = xsltproc --xinclude --nonet
|
|
|
|
XMLS = $(wildcard introspection/nm-*.xml)
|
|
# Figure out if we need ASYNC_INTROSPECT and add it later
|
|
|
|
GENERATED_FILES = \
|
|
docs/spec.html
|
|
|
|
docs/spec.html: $(XMLS) introspection/all.xml introspection/generic-types.xml introspection/errors.xml introspection/vpn-errors.xml tools/doc-generator.xsl introspection/generic-types.xml
|
|
@install -d docs
|
|
$(XSLTPROC) tools/doc-generator.xsl introspection/all.xml > $@
|
|
|
|
all: $(GENERATED_FILES)
|
|
|
|
clean:
|
|
rm -f $(GENERATED_FILES)
|
|
|
|
endif
|
|
|
|
SUBDIRS = marshallers
|
|
|
|
if NO_GIO
|
|
SUBDIRS += gfilemonitor
|
|
endif
|
|
|
|
SUBDIRS += \
|
|
libnm-util \
|
|
libnm-glib \
|
|
src \
|
|
initscript \
|
|
test \
|
|
po \
|
|
man \
|
|
include \
|
|
introspection \
|
|
callouts \
|
|
system-settings \
|
|
tools \
|
|
policy \
|
|
docs/libnm-glib \
|
|
docs/libnm-util
|
|
|
|
EXTRA_DIST = \
|
|
CONTRIBUTING \
|
|
NetworkManager.pc.in \
|
|
intltool-extract.in \
|
|
intltool-merge.in \
|
|
intltool-update.in
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --with-tests=yes
|
|
|
|
DISTCLEANFILES = intltool-extract intltool-merge intltool-update
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = NetworkManager.pc
|
|
|