mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-29 22:00:13 +01:00
* test/test-common.c test/test-common.h test/Makefile.am - Move to a test-common subdirectory * test/libnm-util/test-ciphers.c - Move test data to test-inputs.h - Test WPA ciphers too * test/libnm-util/test-dbus-helpers.c - Test serialization/deserialization of ciphers git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1240 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
19 lines
440 B
Makefile
19 lines
440 B
Makefile
INCLUDES = -I${top_srcdir} \
|
|
-I${top_srcdir}/utils \
|
|
-I${top_srcdir}/include \
|
|
-I${top_srcdir}/libnm-util \
|
|
-I${top_srcdir}/test
|
|
|
|
noinst_LTLIBRARIES=libtest-common.la
|
|
|
|
|
|
libtest_common_la_SOURCES= \
|
|
test-common.c \
|
|
test-common.h
|
|
|
|
libtest_common_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
-DG_DISABLE_DEPRECATED
|
|
|
|
libtest_common_la_LIBADD = $(GLIB_LIBS)
|
|
|