mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-26 00:40:08 +01:00
31 lines
607 B
Makefile
31 lines
607 B
Makefile
INCLUDES = -I${top_srcdir}/include
|
|
|
|
AM_CPPFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
$(QT_CFLAGS)
|
|
|
|
noinst_PROGRAMS = \
|
|
add-connection-wired \
|
|
list-connections \
|
|
change-ipv4-addresses
|
|
|
|
add_connection_wired_SOURCES = add-connection-wired.cpp
|
|
add_connection_wired_LDADD = \
|
|
$(DBUS_LIBS) \
|
|
$(QT_LIBS)
|
|
|
|
list_connections_SOURCES = list-connections.cpp
|
|
list_connections_LDADD = \
|
|
$(DBUS_LIBS) \
|
|
$(QT_LIBS)
|
|
|
|
change_ipv4_addresses_SOURCES = change-ipv4-addresses.cpp
|
|
change_ipv4_addresses_LDADD = \
|
|
$(DBUS_LIBS) \
|
|
$(QT_LIBS)
|
|
|
|
EXTRA_DIST = \
|
|
add-connection-wired.cpp \
|
|
list-connections.cpp \
|
|
change-ipv4-addresses.cpp
|
|
|