tests/Makefile.am
changeset 536 d2e9e1df6d82
parent 525 0499e563dbdf
child 664 f57b1b61e1fe
equal deleted inserted replaced
535:65e61128ef18 536:d2e9e1df6d82
     3 SUBDIRS = parser-tests
     3 SUBDIRS = parser-tests
     4 
     4 
     5 noinst_PROGRAMS = $(TEST_PROGS)
     5 noinst_PROGRAMS = $(TEST_PROGS)
     6 TEST_PROGS = 
     6 TEST_PROGS = 
     7 
     7 
     8 TEST_PROGS += test-parser
     8 TEST_PROGS += test-parser                       \
       
     9 			  test-data-objects
       
    10 
     9 test_parser_SOURCES =                           \
    11 test_parser_SOURCES =                           \
    10     test-parser.c
    12 	test-parser.c
       
    13 	
       
    14 test_data_objects_SOURCES =                     \
       
    15 	test-data-objects.c                         \
       
    16 	$(top_srcdir)/loudmouth/lm-data-objects.c
    11 
    17 
    12 AM_CPPFLAGS =                                   \
    18 AM_CPPFLAGS =                                   \
    13     -I.                                         \
    19 	-I.                                         \
    14     -I$(top_srcdir)                             \
    20 	-I$(top_srcdir)                             \
    15     -DLM_COMPILATION                            \
    21 	-DLM_COMPILATION                            \
    16     -DRUNTIME_ENDIAN                            \
    22 	-DRUNTIME_ENDIAN                            \
    17     $(LOUDMOUTH_CFLAGS)                         \
    23 	$(LOUDMOUTH_CFLAGS)                         \
    18     -DPARSER_TEST_DIR="\"$(top_srcdir)/tests/parser-tests\""
    24 	-DPARSER_TEST_DIR="\"$(top_srcdir)/tests/parser-tests\""
    19 
    25 
    20 LIBS =                                          \
    26 LIBS =                                          \
    21     $(LOUDMOUTH_LIBS)                           \
    27 	$(LOUDMOUTH_LIBS)                           \
    22     $(top_builddir)/loudmouth/libloudmouth-1.la
    28 	$(top_builddir)/loudmouth/libloudmouth-1.la
    23 
    29