tests/Makefile.am
author Mikael Hallendal <micke@imendio.com>
Sun, 22 Jun 2008 23:21:26 +0200
changeset 425 6045fa14c44f
parent 398 d81f80894575
child 524 8835e4566b3a
permissions -rw-r--r--
Added LmSimpleIO. LmSimpleIO is meant to be the very simple implementation of the current LmConnection (send code) + lm_message_node_xml + LmParser. After this is properly refactored I can start looking into writing a more robust version of these using expat or LibXML.

include $(top_srcdir)/Makefile.decl

SUBDIRS = parser-tests

noinst_PROGRAMS = $(TEST_PROGS)
TEST_PROGS = 

TEST_PROGS += test-parser
test_parser_SOURCES =                         \
	test-parser.c

AM_CPPFLAGS =                                 \
	-I.                                   \
	-I$(top_srcdir)                       \
	-DLM_COMPILATION                      \
	-DRUNTIME_ENDIAN                      \
	$(LOUDMOUTH_CFLAGS)                   \
	-DPARSER_TEST_DIR="\"$(top_srcdir)/tests/parser-tests\""

LIBS =                                        \
	$(LOUDMOUTH_LIBS)                     \
	$(top_builddir)/loudmouth/libloudmouth-1.la