mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
11 lines
337 B
Makefile
Executable file
11 lines
337 B
Makefile
Executable file
noinst_PROGRAMS = domwriter dom2pyx
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include @PARSER_HEADERS@ $(BOOST_CPPFLAGS)
|
|
LIBARABICA = $(top_builddir)/src/libarabica.la @PARSER_LIBS@
|
|
|
|
domwriter_SOURCES = DOMWriter.cpp
|
|
domwriter_LDADD = $(LIBARABICA)
|
|
|
|
dom2pyx_SOURCES = dom2pyx.cpp
|
|
dom2pyx_LDADD = $(LIBARABICA)
|
|
|