mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-06-02 09:48:23 +02:00
* utils/Makefile.am utils/nm-utils.c utils/nm-utils.h src/supplicant-manager/Makefile.am src/dhcp-manager/Makefile.am src/backends/Makefile.am src/named-manager/Makefile.am src/ppp-manager/Makefile.am src/vpn-manager/Makefile.am test/libnm-util/Makefile.am test/test-common/Makefile.am - Remove utils/; it was unused git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2808 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
52 lines
1.5 KiB
Makefile
52 lines
1.5 KiB
Makefile
INCLUDES = -I${top_srcdir} \
|
|
-I${top_srcdir}/include \
|
|
-I${top_srcdir}/libnm-util \
|
|
-I${top_srcdir}/test \
|
|
-I${top_srcdir}/test/test-common
|
|
|
|
noinst_PROGRAMS = test-ciphers test-dbus-helpers test-dbus-dict-helpers
|
|
|
|
test_ciphers_SOURCES = test-ciphers.c test-inputs.h
|
|
|
|
test_ciphers_CPPFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
$(GLIB_CFLAGS) \
|
|
-DDBUS_API_SUBJECT_TO_CHANGE \
|
|
-DBINDIR=\"$(bindir)\" \
|
|
-DDATADIR=\"$(datadir)\"
|
|
|
|
test_ciphers_LDADD = \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS) \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/test/test-common/libtest-common.la
|
|
|
|
|
|
test_dbus_helpers_SOURCES = test-dbus-helpers.c test-inputs.h
|
|
|
|
test_dbus_helpers_CPPFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
$(GLIB_CFLAGS) \
|
|
-DDBUS_API_SUBJECT_TO_CHANGE \
|
|
-DBINDIR=\"$(bindir)\" \
|
|
-DDATADIR=\"$(datadir)\"
|
|
|
|
test_dbus_helpers_LDADD = \
|
|
$(DBUS_LIBS) \
|
|
$(GLIB_LIBS) \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/test/test-common/libtest-common.la
|
|
|
|
|
|
test_dbus_dict_helpers_SOURCES = test-dbus-dict-helpers.c
|
|
|
|
test_dbus_dict_helpers_CPPFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
-DDBUS_API_SUBJECT_TO_CHANGE \
|
|
-DBINDIR=\"$(bindir)\" \
|
|
-DDATADIR=\"$(datadir)\"
|
|
|
|
test_dbus_dict_helpers_LDADD = \
|
|
$(DBUS_LIBS) \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/test/test-common/libtest-common.la
|