mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-03 20:38:06 +02:00
26 lines
635 B
Makefile
26 lines
635 B
Makefile
INCLUDES = -I${top_srcdir}/libnm-util \
|
|
-I${top_srcdir}/libnm-glib \
|
|
-I${top_srcdir}/include
|
|
|
|
AM_CPPFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
$(GLIB_CFLAGS)
|
|
|
|
noinst_PROGRAMS = add-connection-glib get-active-connections
|
|
|
|
add_connection_glib_SOURCES = add-connection-glib.c
|
|
add_connection_glib_LDADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS)
|
|
|
|
get_active_connections_SOURCES = get-active-connections.c
|
|
get_active_connections_LDADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS)
|
|
|
|
EXTRA_DIST = \
|
|
add-connection-glib.c \
|
|
get-active-connections.c
|
|
|