2012-01-08 12:30:02 -05:00
|
|
|
INCLUDES = -I${top_srcdir}/include \
|
|
|
|
|
-I${top_builddir}/include
|
2011-04-20 19:38:31 -05:00
|
|
|
|
|
|
|
|
AM_CPPFLAGS = \
|
|
|
|
|
$(DBUS_CFLAGS) \
|
|
|
|
|
$(QT_CFLAGS)
|
|
|
|
|
|
|
|
|
|
noinst_PROGRAMS = \
|
2011-04-20 19:49:41 -05:00
|
|
|
add-connection-wired \
|
2011-06-08 19:16:13 +02:00
|
|
|
list-connections \
|
2012-02-02 13:37:10 +01:00
|
|
|
change-ipv4-addresses \
|
|
|
|
|
monitor-nm-running
|
2011-04-20 19:38:31 -05:00
|
|
|
|
|
|
|
|
add_connection_wired_SOURCES = add-connection-wired.cpp
|
|
|
|
|
add_connection_wired_LDADD = \
|
|
|
|
|
$(DBUS_LIBS) \
|
|
|
|
|
$(QT_LIBS)
|
|
|
|
|
|
2011-04-20 19:49:41 -05:00
|
|
|
list_connections_SOURCES = list-connections.cpp
|
|
|
|
|
list_connections_LDADD = \
|
|
|
|
|
$(DBUS_LIBS) \
|
|
|
|
|
$(QT_LIBS)
|
|
|
|
|
|
2011-06-08 19:16:13 +02:00
|
|
|
change_ipv4_addresses_SOURCES = change-ipv4-addresses.cpp
|
|
|
|
|
change_ipv4_addresses_LDADD = \
|
|
|
|
|
$(DBUS_LIBS) \
|
|
|
|
|
$(QT_LIBS)
|
|
|
|
|
|
2012-02-02 13:37:10 +01:00
|
|
|
monitor_nm_running_SOURCES = monitor-nm-running.cpp
|
|
|
|
|
monitor_nm_running_LDADD = \
|
|
|
|
|
$(DBUS_LIBS) \
|
|
|
|
|
$(QT_LIBS)
|
|
|
|
|
|
|
|
|
|
monitor-nm-running.moc: monitor-nm-running.cpp
|
|
|
|
|
$(AM_V_GEN) $(MOC) -i $< -o $@
|
|
|
|
|
|
|
|
|
|
BUILT_SOURCES = \
|
|
|
|
|
monitor-nm-running.moc
|
|
|
|
|
|
2011-04-20 19:38:31 -05:00
|
|
|
EXTRA_DIST = \
|
2011-04-20 19:49:41 -05:00
|
|
|
add-connection-wired.cpp \
|
2011-06-08 19:16:13 +02:00
|
|
|
list-connections.cpp \
|
2012-02-02 13:37:10 +01:00
|
|
|
change-ipv4-addresses.cpp \
|
|
|
|
|
monitor-nm-running.cpp
|
|
|
|
|
|
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
2011-04-20 19:38:31 -05:00
|
|
|
|