85 lines
2.4 KiB
Makefile
85 lines
2.4 KiB
Makefile
INCLUDES = -I${top_srcdir}/libnm-util \
|
|
-I${top_builddir}/libnm-util \
|
|
-I${top_srcdir}/libnm-glib \
|
|
-I${top_srcdir}/include \
|
|
-I${top_builddir}/include
|
|
|
|
AM_CPPFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
$(GLIB_CFLAGS)
|
|
|
|
noinst_PROGRAMS = \
|
|
add-connection-dbus-glib \
|
|
add-connection-libnm-glib \
|
|
get-active-connections-dbus-glib \
|
|
list-connections-dbus-glib \
|
|
list-connections-libnm-glib \
|
|
get-ap-info-libnm-glib \
|
|
monitor-nm-running-dbus-glib \
|
|
monitor-nm-running-GDBus \
|
|
monitor-nm-state-GDBus
|
|
|
|
add_connection_dbus_glib_SOURCES = add-connection-dbus-glib.c
|
|
add_connection_dbus_glib_LDADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS)
|
|
|
|
add_connection_libnm_glib_SOURCES = add-connection-libnm-glib.c
|
|
add_connection_libnm_glib_LDADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/libnm-glib/libnm-glib.la \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS)
|
|
|
|
get_active_connections_dbus_glib_SOURCES = get-active-connections-dbus-glib.c
|
|
get_active_connections_dbus_glib_LDADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS)
|
|
|
|
list_connections_dbus_glib_SOURCES = list-connections-dbus-glib.c
|
|
list_connections_dbus_glib_LDADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS)
|
|
|
|
list_connections_libnm_glib_SOURCES = list-connections-libnm-glib.c
|
|
list_connections_libnm_glib_LDADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/libnm-glib/libnm-glib.la \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS)
|
|
|
|
get_ap_info_libnm_glib_SOURCES = get-ap-info-libnm-glib.c
|
|
get_ap_info_libnm_glib_LDADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/libnm-glib/libnm-glib.la \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS)
|
|
|
|
monitor_nm_running_dbus_glib_SOURCES = monitor-nm-running-dbus-glib.c
|
|
monitor_nm_running_dbus_glib_LDADD = \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS)
|
|
|
|
monitor_nm_running_GDBus_SOURCES = monitor-nm-running-GDBus.c
|
|
monitor_nm_running_GDBus_LDADD = \
|
|
$(GIO_LIBS)
|
|
|
|
monitor_nm_state_GDBus_SOURCES = monitor-nm-state-GDBus.c
|
|
monitor_nm_state_GDBus_LDADD = \
|
|
$(GIO_LIBS)
|
|
|
|
EXTRA_DIST = \
|
|
add-connection-dbus-glib.c \
|
|
add-connection-libnm-glib.c \
|
|
get-active-connections-dbus-glib.c \
|
|
list-connections-dbus-glib.c \
|
|
list-connections-libnm-glib.c \
|
|
get-ap-info-libnm-glib.c \
|
|
monitor-nm-running-dbus-glib.c \
|
|
monitor-nm-running-GDBus.c \
|
|
monitor-nm-state-GDBus.c
|
|
|