mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-24 13:28:13 +02:00
Patch from Christian Persch <chpe@gnome.org> * libnm-glib/Makefile.am: * dispatcher-daemon/Makefile.am: Use the correct variables, the correct paths, and correct ordering. (446315) git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2588 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
34 lines
799 B
Makefile
34 lines
799 B
Makefile
NULL=
|
|
|
|
sbin_PROGRAMS = NetworkManagerDispatcher
|
|
|
|
NetworkManagerDispatcher_SOURCES = \
|
|
NetworkManagerDispatcher.c \
|
|
$(NULL)
|
|
|
|
NetworkManagerDispatcher_CPPFLAGS = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/utils \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/libnm-util \
|
|
-I$(top_srcdir)/libnm-glib \
|
|
-DDBUS_API_SUBJECT_TO_CHANGE \
|
|
-DBINDIR=\"$(bindir)\" \
|
|
-DDATADIR=\"$(datadir)\" \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\" \
|
|
-DLOCALSTATEDIR=\"$(localstatedir)\" \
|
|
$(NULL)
|
|
|
|
NetworkManagerDispatcher_CFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
$(GTHREAD_CFLAGS) \
|
|
-Wall \
|
|
$(NULL)
|
|
|
|
NetworkManagerDispatcher_LDADD = \
|
|
$(top_builddir)/utils/libnmutils.la \
|
|
$(top_builddir)/libnm-util/libnm-util.la\
|
|
$(top_builddir)/libnm-glib/libnm-glib.la\
|
|
$(DBUS_LIBS) \
|
|
$(GTHREAD_LIBS) \
|
|
$(NULL)
|