Add PARSER_LIBS into link

This commit is contained in:
jez 2011-11-25 18:47:54 +00:00
parent 148596b694
commit 72bfe7a883
11 changed files with 1779 additions and 1369 deletions

View file

@ -1,7 +1,7 @@
noinst_PROGRAMS = domwriter dom2pyx noinst_PROGRAMS = domwriter dom2pyx
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS) 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_SOURCES = DOMWriter.cpp
domwriter_LDADD = $(LIBARABICA) domwriter_LDADD = $(LIBARABICA)

View file

@ -1,7 +1,7 @@
noinst_PROGRAMS = pyx simple_handler writer xmlbase noinst_PROGRAMS = pyx simple_handler writer xmlbase
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS) 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_SOURCES = pyx.cpp
pyx_LDADD = $(LIBARABICA) pyx_LDADD = $(LIBARABICA)

View file

@ -1,7 +1,7 @@
noinst_PROGRAMS = taggle noinst_PROGRAMS = taggle
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS) 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_SOURCES = taggle.cpp
taggle_LDADD = $(LIBARABICA) taggle_LDADD = $(LIBARABICA)

View file

@ -1,7 +1,7 @@
noinst_PROGRAMS = xgrep noinst_PROGRAMS = xgrep
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ @BOOST_CPPFLAGS@ 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_SOURCES = xgrep.cpp
xgrep_LDADD = $(LIBARABICA) xgrep_LDADD = $(LIBARABICA)

View file

@ -1,7 +1,7 @@
bin_PROGRAMS = mangle bin_PROGRAMS = mangle
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ @BOOST_CPPFLAGS@ 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_SOURCES = mangle.cpp
mangle_LDADD = $(LIBARABICA) mangle_LDADD = $(LIBARABICA)

3107
ltmain.sh Normal file → Executable file

File diff suppressed because it is too large Load diff

View file

@ -12,6 +12,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@
LIBARABICA = $(top_builddir)/src/libarabica.la LIBARABICA = $(top_builddir)/src/libarabica.la
LIBSILLY = ../CppUnit/libsillystring.la LIBSILLY = ../CppUnit/libsillystring.la
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
SYSLIBS = @PARSER_LIBS@
test_sources = dom_test_suite.hpp \ test_sources = dom_test_suite.hpp \
dom_conf_test.hpp \ dom_conf_test.hpp \
@ -33,17 +34,17 @@ test_sources = dom_test_suite.hpp \
dom_test_SOURCES = main.cpp \ dom_test_SOURCES = main.cpp \
$(test_sources) $(test_sources)
dom_test_LDADD = $(TESTLIBS) dom_test_LDADD = $(TESTLIBS) $(SYSLIBS)
dom_test_DEPENDENCIES = $(TESTLIBS) dom_test_DEPENDENCIES = $(TESTLIBS)
dom_test_silly_SOURCES = main_silly.cpp \ dom_test_silly_SOURCES = main_silly.cpp \
$(test_sources) $(test_sources)
dom_test_silly_LDADD = $(TESTLIBS) $(LIBSILLY) dom_test_silly_LDADD = $(TESTLIBS) $(LIBSILLY) $(SYSLIBS)
dom_test_silly_DEPENDENCIES = $(TESTLIBS) $(LIBSILLY) dom_test_silly_DEPENDENCIES = $(TESTLIBS) $(LIBSILLY)
dom_test_wide_SOURCES = main_wide.cpp \ dom_test_wide_SOURCES = main_wide.cpp \
$(test_sources) $(test_sources)
dom_test_wide_LDADD = $(TESTLIBS) dom_test_wide_LDADD = $(TESTLIBS) $(SYSLIBS)
dom_test_wide_DEPENDENCIES = $(TESTLIBS) dom_test_wide_DEPENDENCIES = $(TESTLIBS)

View file

@ -8,24 +8,25 @@ endif
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS) 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 LIBSILLY = ../CppUnit/libsillystring.la
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
SYSLIBS = @PARSER_LIBS@
test_sources = test_WhitespaceStripper.hpp test_sources = test_WhitespaceStripper.hpp
filter_test_SOURCES = filter_test.cpp \ filter_test_SOURCES = filter_test.cpp \
$(test_sources) $(test_sources)
filter_test_LDADD = $(TESTLIBS) filter_test_LDADD = $(TESTLIBS) $(SYSLIBS)
filter_test_DEPENDENCIES = $(TESTLIBS) filter_test_DEPENDENCIES = $(TESTLIBS)
filter_test_silly_SOURCES = filter_test_silly.cpp \ filter_test_silly_SOURCES = filter_test_silly.cpp \
$(test_sources) $(test_sources)
filter_test_silly_LDADD = $(TESTLIBS) $(LIBSILLY) filter_test_silly_LDADD = $(TESTLIBS) $(LIBSILLY) $(SYSLIBS)
filter_test_silly_DEPENDENCIES = $(TESTLIBS) $(LIBSILLY) filter_test_silly_DEPENDENCIES = $(TESTLIBS) $(LIBSILLY)
filter_test_wide_SOURCES = filter_test_wide.cpp \ filter_test_wide_SOURCES = filter_test_wide.cpp \
$(test_sources) $(test_sources)
filter_test_wide_LDADD = $(TESTLIBS) filter_test_wide_LDADD = $(TESTLIBS) $(SYSLIBS)
filter_test_wide_DEPENDENCIES = $(TESTLIBS) filter_test_wide_DEPENDENCIES = $(TESTLIBS)

View file

@ -8,12 +8,13 @@ endif
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS) 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
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
SYSLIBS = @PARSER_LIBS@
test_sources = test_Taggle.hpp test_sources = test_Taggle.hpp
taggle_test_SOURCES = taggle_test.cpp \ taggle_test_SOURCES = taggle_test.cpp \
$(test_sources) $(test_sources)
taggle_test_LDADD = $(TESTLIBS) taggle_test_LDADD = $(TESTLIBS) $(SYSLIBS)
taggle_test_DEPENDENCIES = $(TESTLIBS) taggle_test_DEPENDENCIES = $(TESTLIBS)

View file

@ -12,6 +12,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@
LIBARABICA = $(top_builddir)/src/libarabica.la LIBARABICA = $(top_builddir)/src/libarabica.la
LIBSILLY = ../CppUnit/libsillystring.la LIBSILLY = ../CppUnit/libsillystring.la
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
SYSLIBS = @PARSER_LIBS@
test_sources = arithmetic_test.hpp \ test_sources = arithmetic_test.hpp \
attr_value_test.hpp \ attr_value_test.hpp \
@ -30,16 +31,16 @@ test_sources = arithmetic_test.hpp \
xpath_test_SOURCES = main.cpp \ xpath_test_SOURCES = main.cpp \
$(test_sources) $(test_sources)
xpath_test_LDADD = $(TESTLIBS) xpath_test_LDADD = $(TESTLIBS) $(SYSLIBS)
xpath_test_DEPENDENCIES = $(TESTLIBS) xpath_test_DEPENDENCIES = $(TESTLIBS)
xpath_test_silly_SOURCES = main_silly.cpp \ xpath_test_silly_SOURCES = main_silly.cpp \
$(test_sources) $(test_sources)
xpath_test_silly_LDADD = $(TESTLIBS) $(LIBSILLY) xpath_test_silly_LDADD = $(TESTLIBS) $(LIBSILLY) $(SYSLIBS)
xpath_test_silly_DEPENDENCIES = $(TESTLIBS) $(LIBSILLY) xpath_test_silly_DEPENDENCIES = $(TESTLIBS) $(LIBSILLY)
xpath_test_wide_SOURCES = main_wide.cpp \ xpath_test_wide_SOURCES = main_wide.cpp \
$(test_sources) $(test_sources)
xpath_test_wide_LDADD = $(TESTLIBS) xpath_test_wide_LDADD = $(TESTLIBS) $(SYSLIBS)
xpath_test_wide_DEPENDENCIES = $(TESTLIBS) xpath_test_wide_DEPENDENCIES = $(TESTLIBS)

View file

@ -11,14 +11,15 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@
LIBARABICA = $(top_builddir)/src/libarabica.la LIBARABICA = $(top_builddir)/src/libarabica.la
LIBSILLY = ../CppUnit/libsillystring.la LIBSILLY = ../CppUnit/libsillystring.la
TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la
SYSLIBS = @PARSER_LIBS@
test_sources = scope_test.hpp \ test_sources = scope_test.hpp \
xslt_test.hpp \ xslt_test.hpp \
xslt_test.cpp xslt_test.cpp
xslt_test_SOURCES = main.cpp \ xslt_test_SOURCES = main.cpp \
$(test_sources) $(test_sources)
xslt_test_LDADD = $(TESTLIBS) $(LIBELEPHANT) xslt_test_LDADD = $(TESTLIBS) $(LIBELEPHANT) $(SYSLIBS)
xslt_test_DEPENDENCIES = $(TESTLIBS) xslt_test_DEPENDENCIES = $(TESTLIBS)