dbus/test/Makefile.am
Harri Porten 3327ecfdcf make test compilable without prior make install. not sure how about
the preferred way to activate test compilation (DBUS_BUILD_TESTS)
2002-12-15 14:53:29 +00:00

23 lines
429 B
Makefile

if DBUS_BUILD_TESTS
INCLUDES=-I$(top_srcdir) $(DBUS_TEST_CFLAGS)
noinst_PROGRAMS= echo-client echo-server
echo_client_SOURCES= \
echo-client.c \
watch.c \
watch.h
echo_server_SOURCES= \
echo-server.c \
watch.c \
watch.h
TEST_LIBS=$(DBUS_TEST_LIBS) $(top_builddir)/dbus/libdbus-convenience.la $(top_builddir)/dbus/libdbus-1.la
echo_client_LDADD=$(TEST_LIBS)
echo_server_LDADD=$(TEST_LIBS)
endif