mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-01 06:20:38 +01:00
17 lines
465 B
Makefile
Executable file
17 lines
465 B
Makefile
Executable file
|
|
check_PROGRAMS = xslt_test
|
|
TESTS = $(check_PROGRAMS)
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include @PARSER_HEADERS@ @BOOST_CPPFLAGS@
|
|
LIBARABICA = $(top_builddir)/src/libarabica.la
|
|
LIBSILLY = ../CppUnit/libsillystring.la
|
|
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
|
|
|
|
test_sources = scope_test.hpp \
|
|
xslt_test.hpp
|
|
|
|
xslt_test_SOURCES = main.cpp \
|
|
$(test_sources)
|
|
xslt_test_LDADD = $(TESTLIBS)
|
|
xslt_test_DEPENDENCIES = $(TESTLIBS)
|
|
|