mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 22:20:08 +01:00
Patch Valentine Sinitsyn <e_val@inbox.ru> to fix GNOME bug #342398: * configure.in, gnome/Makefile.am, Makefile.am: Add "--without-gnome" configure flag to disable building of the GNOME-based applet. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1765 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
33 lines
596 B
Makefile
33 lines
596 B
Makefile
SUBDIRS = \
|
|
utils \
|
|
libnm-util \
|
|
src \
|
|
dispatcher-daemon \
|
|
gnome \
|
|
initscript \
|
|
test \
|
|
po \
|
|
man \
|
|
include
|
|
|
|
EXTRA_DIST = \
|
|
CONTRIBUTING \
|
|
NetworkManager.pc.in \
|
|
intltool-extract.in \
|
|
intltool-merge.in \
|
|
intltool-update.in
|
|
|
|
if WITH_GNOME
|
|
EXTRA_DIST += \
|
|
nm-applet.desktop
|
|
endif
|
|
|
|
DISTCLEANFILES = intltool-extract intltool-merge intltool-update
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = NetworkManager.pc
|
|
|
|
if WITH_GNOME
|
|
autostartdir = $(datadir)/gnome/autostart
|
|
autostart_DATA = nm-applet.desktop
|
|
endif
|