mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-02 14:40:13 +01:00
* test/nmtest.c - Removed * test/nm-tool.c test/Makefile.am - Added new "nm-tool" tool that gives quite a bit more information git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1006 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
30 lines
889 B
Makefile
30 lines
889 B
Makefile
INCLUDES = -I${top_srcdir} -I${top_srcdir}/gnome/libnm_glib -I${top_srcdir}/utils
|
|
|
|
AM_CPPFLAGS = \
|
|
$(DBUS_CFLAGS) \
|
|
$(GTHREAD_CFLAGS) \
|
|
$(HAL_CFLAGS) \
|
|
-DDBUS_API_SUBJECT_TO_CHANGE \
|
|
-DBINDIR=\"$(bindir)\" \
|
|
-DDATADIR=\"$(datadir)\"
|
|
|
|
noinst_PROGRAMS = nm-tool nminfotest nmtestdevices libnm_glib_test
|
|
|
|
nm_tool_SOURCES = nm-tool.c
|
|
nm_tool_LDADD = $(DBUS_LIBS) $(GTHREAD_LIBS) $(HAL_LIBS) \
|
|
$(top_builddir)/utils/libnmutils.la
|
|
|
|
|
|
nminfotest_SOURCES = nminfotest.c
|
|
nminfotest_LDADD = $(DBUS_LIBS) $(GTHREAD_LIBS) \
|
|
$(top_builddir)/utils/libnmutils.la
|
|
|
|
nmtestdevices_SOURCES = nmtestdevices.c
|
|
nmtestdevices_LDADD = $(DBUS_LIBS) $(GTHREAD_LIBS) \
|
|
$(top_builddir)/utils/libnmutils.la
|
|
|
|
libnm_glib_test_SOURCES = libnm_glib_test.c
|
|
libnm_glib_test_LDADD = $(DBUS_LIBS) $(GTHREAD_LIBS) \
|
|
$(top_builddir)/utils/libnmutils.la \
|
|
../gnome/libnm_glib/libnm_glib.la
|
|
|