mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-25 21:58:21 +01:00
20 lines
500 B
Makefile
Executable file
20 lines
500 B
Makefile
Executable file
|
|
check_PROGRAMS = taggle_test
|
|
if WANT_TESTS
|
|
TESTS = $(check_PROGRAMS)
|
|
endif
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
|
LIBARABICA = $(top_builddir)/src/libarabica.la
|
|
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
|
|
SYSLIBS = @PARSER_LIBS@
|
|
|
|
test_sources = test_Taggle.hpp
|
|
|
|
taggle_test_SOURCES = taggle_test.cpp \
|
|
$(test_sources)
|
|
taggle_test_LDADD = $(TESTLIBS) $(SYSLIBS)
|
|
taggle_test_DEPENDENCIES = $(TESTLIBS)
|
|
|
|
|