mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-25 21:58:21 +01:00
Add PARSER_LIBS into link
This commit is contained in:
parent
148596b694
commit
72bfe7a883
11 changed files with 1779 additions and 1369 deletions
|
@ -1,7 +1,7 @@
|
|||
noinst_PROGRAMS = domwriter dom2pyx
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la @PARSER_LIBS@
|
||||
|
||||
domwriter_SOURCES = DOMWriter.cpp
|
||||
domwriter_LDADD = $(LIBARABICA)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
noinst_PROGRAMS = pyx simple_handler writer xmlbase
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la @PARSER_LIBS@
|
||||
|
||||
pyx_SOURCES = pyx.cpp
|
||||
pyx_LDADD = $(LIBARABICA)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
noinst_PROGRAMS = taggle
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la @PARSER_LIBS@
|
||||
|
||||
taggle_SOURCES = taggle.cpp
|
||||
taggle_LDADD = $(LIBARABICA)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
noinst_PROGRAMS = xgrep
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ @BOOST_CPPFLAGS@
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la @PARSER_LIBS@
|
||||
|
||||
xgrep_SOURCES = xgrep.cpp
|
||||
xgrep_LDADD = $(LIBARABICA)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
bin_PROGRAMS = mangle
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ @BOOST_CPPFLAGS@
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la @PARSER_LIBS@
|
||||
|
||||
mangle_SOURCES = mangle.cpp
|
||||
mangle_LDADD = $(LIBARABICA)
|
||||
|
|
|
@ -12,6 +12,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@
|
|||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBSILLY = ../CppUnit/libsillystring.la
|
||||
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
|
||||
SYSLIBS = @PARSER_LIBS@
|
||||
|
||||
test_sources = dom_test_suite.hpp \
|
||||
dom_conf_test.hpp \
|
||||
|
@ -33,17 +34,17 @@ test_sources = dom_test_suite.hpp \
|
|||
|
||||
dom_test_SOURCES = main.cpp \
|
||||
$(test_sources)
|
||||
dom_test_LDADD = $(TESTLIBS)
|
||||
dom_test_LDADD = $(TESTLIBS) $(SYSLIBS)
|
||||
dom_test_DEPENDENCIES = $(TESTLIBS)
|
||||
|
||||
dom_test_silly_SOURCES = main_silly.cpp \
|
||||
$(test_sources)
|
||||
dom_test_silly_LDADD = $(TESTLIBS) $(LIBSILLY)
|
||||
dom_test_silly_LDADD = $(TESTLIBS) $(LIBSILLY) $(SYSLIBS)
|
||||
dom_test_silly_DEPENDENCIES = $(TESTLIBS) $(LIBSILLY)
|
||||
|
||||
dom_test_wide_SOURCES = main_wide.cpp \
|
||||
$(test_sources)
|
||||
dom_test_wide_LDADD = $(TESTLIBS)
|
||||
dom_test_wide_LDADD = $(TESTLIBS) $(SYSLIBS)
|
||||
dom_test_wide_DEPENDENCIES = $(TESTLIBS)
|
||||
|
||||
|
||||
|
|
|
@ -8,24 +8,25 @@ endif
|
|||
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBSILLY = ../CppUnit/libsillystring.la
|
||||
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
|
||||
SYSLIBS = @PARSER_LIBS@
|
||||
|
||||
test_sources = test_WhitespaceStripper.hpp
|
||||
|
||||
filter_test_SOURCES = filter_test.cpp \
|
||||
$(test_sources)
|
||||
filter_test_LDADD = $(TESTLIBS)
|
||||
filter_test_LDADD = $(TESTLIBS) $(SYSLIBS)
|
||||
filter_test_DEPENDENCIES = $(TESTLIBS)
|
||||
|
||||
filter_test_silly_SOURCES = filter_test_silly.cpp \
|
||||
$(test_sources)
|
||||
filter_test_silly_LDADD = $(TESTLIBS) $(LIBSILLY)
|
||||
filter_test_silly_LDADD = $(TESTLIBS) $(LIBSILLY) $(SYSLIBS)
|
||||
filter_test_silly_DEPENDENCIES = $(TESTLIBS) $(LIBSILLY)
|
||||
|
||||
filter_test_wide_SOURCES = filter_test_wide.cpp \
|
||||
$(test_sources)
|
||||
filter_test_wide_LDADD = $(TESTLIBS)
|
||||
filter_test_wide_LDADD = $(TESTLIBS) $(SYSLIBS)
|
||||
filter_test_wide_DEPENDENCIES = $(TESTLIBS)
|
||||
|
||||
|
|
|
@ -8,12 +8,13 @@ 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)
|
||||
taggle_test_LDADD = $(TESTLIBS) $(SYSLIBS)
|
||||
taggle_test_DEPENDENCIES = $(TESTLIBS)
|
||||
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@
|
|||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBSILLY = ../CppUnit/libsillystring.la
|
||||
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
|
||||
SYSLIBS = @PARSER_LIBS@
|
||||
|
||||
test_sources = arithmetic_test.hpp \
|
||||
attr_value_test.hpp \
|
||||
|
@ -30,16 +31,16 @@ test_sources = arithmetic_test.hpp \
|
|||
|
||||
xpath_test_SOURCES = main.cpp \
|
||||
$(test_sources)
|
||||
xpath_test_LDADD = $(TESTLIBS)
|
||||
xpath_test_LDADD = $(TESTLIBS) $(SYSLIBS)
|
||||
xpath_test_DEPENDENCIES = $(TESTLIBS)
|
||||
|
||||
xpath_test_silly_SOURCES = main_silly.cpp \
|
||||
$(test_sources)
|
||||
xpath_test_silly_LDADD = $(TESTLIBS) $(LIBSILLY)
|
||||
xpath_test_silly_LDADD = $(TESTLIBS) $(LIBSILLY) $(SYSLIBS)
|
||||
xpath_test_silly_DEPENDENCIES = $(TESTLIBS) $(LIBSILLY)
|
||||
|
||||
xpath_test_wide_SOURCES = main_wide.cpp \
|
||||
$(test_sources)
|
||||
xpath_test_wide_LDADD = $(TESTLIBS)
|
||||
xpath_test_wide_LDADD = $(TESTLIBS) $(SYSLIBS)
|
||||
xpath_test_wide_DEPENDENCIES = $(TESTLIBS)
|
||||
|
||||
|
|
|
@ -11,14 +11,15 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@
|
|||
LIBARABICA = $(top_builddir)/src/libarabica.la
|
||||
LIBSILLY = ../CppUnit/libsillystring.la
|
||||
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
|
||||
SYSLIBS = @PARSER_LIBS@
|
||||
|
||||
test_sources = scope_test.hpp \
|
||||
xslt_test.hpp \
|
||||
xslt_test.cpp
|
||||
|
||||
|
||||
|
||||
xslt_test_SOURCES = main.cpp \
|
||||
$(test_sources)
|
||||
xslt_test_LDADD = $(TESTLIBS) $(LIBELEPHANT)
|
||||
xslt_test_LDADD = $(TESTLIBS) $(LIBELEPHANT) $(SYSLIBS)
|
||||
xslt_test_DEPENDENCIES = $(TESTLIBS)
|
||||
|
||||
|
|
Loading…
Reference in a new issue