mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 04:50:07 +01:00
* Makefile.am configure.in marshallers/Makefile.am marshallers/nm-marshal-main.c marshallers/nm-marshal.list - Consolidate marshallers * libnm-glib/nm-marshal-main.c libnm-glib/nm-marshal.list src/marshallers/Makefile.am src/marshallers/nm-marshal-main.c src/marshallers/nm-marshal.list - Remove * libnm-glib/Makefile.am src/Makefile.am src/dhcp-manager/Makefile.am src/ppp-manager/Makefile.am src/supplicant-manager/Makefile.am src/vpn-manager/Makefile.am - Use consolidated marshallers git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3533 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
50 lines
1 KiB
Makefile
50 lines
1 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 \
|
|
libnm-util \
|
|
libnm-glib \
|
|
src \
|
|
dispatcher-daemon \
|
|
initscript \
|
|
test \
|
|
po \
|
|
man \
|
|
include \
|
|
introspection \
|
|
callouts \
|
|
system-settings \
|
|
tools
|
|
|
|
EXTRA_DIST = \
|
|
CONTRIBUTING \
|
|
NetworkManager.pc.in \
|
|
intltool-extract.in \
|
|
intltool-merge.in \
|
|
intltool-update.in
|
|
|
|
DISTCLEANFILES = intltool-extract intltool-merge intltool-update
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = NetworkManager.pc
|