X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftex2lyx%2FMakefile.am;h=7406bb2ffe950e9ef45c274f94f78fd058797dd2;hb=d09f87c3ca895e53ff77ca47918778e257826806;hp=dcfe5df8a2c5c3fe12072cb8521e56a1d45a31d3;hpb=812b659d89dfeaae7795b3aa0c472fe5174a57cf;p=lyx.git diff --git a/src/tex2lyx/Makefile.am b/src/tex2lyx/Makefile.am index dcfe5df8a2..7406bb2ffe 100644 --- a/src/tex2lyx/Makefile.am +++ b/src/tex2lyx/Makefile.am @@ -1,60 +1,80 @@ include $(top_srcdir)/config/common.am -INCLUDES = -I$(srcdir)/../ $(BOOST_INCLUDES) +EXTRA_DIST = TODO.txt tex2lyx.1in $(TEST_FILES) pch.h -#noinst_LTLIBRARIES = libtexparser.la +#noinst_LIBRARIES = libtexparser.a # -#libtexparser_la_SOURCES = \ -# texparser.C \ -# texparser.h +#libtexparser_a_SOURCES = \ +# Parser.cpp \ +# Parser.h # -#tex2lyx_LDADD = libtexparser.la +#tex2lyx_LDADD = libtexparser.a + +man_MANS = tex2lyx.1 bin_PROGRAMS = tex2lyx -linked_files = \ - FloatList.C \ - Floating.C \ - boost.C \ - counters.C \ - lyxlayout.h \ - lyxlayout.C \ - lyxtextclass.C \ - lyxtextclass.h \ - lyxlex.C \ - lyxlex_pimpl.C +DEFAULT_INCLUDES = + +AM_CPPFLAGS += -DTEX2LYX $(PCH_FLAGS) -I$(top_srcdir)/src/tex2lyx \ + -I$(top_srcdir)/src -I$(top_builddir) $(BOOST_INCLUDES) + +TEST_FILES = \ + test/box-color-size-space-align.tex \ + test/DummyDocument.tex \ + test/foo.eps \ + test/foo.png \ + test/test-insets.tex \ + test/test.ltx \ + test/test-structure.tex -# debug.C +LINKED_FILES = \ + ../Author.cpp \ + ../Color.cpp \ + ../Counters.cpp \ + ../Encoding.cpp \ + ../FloatList.cpp \ + ../Floating.cpp \ + ../FontInfo.cpp \ + ../graphics/GraphicsParams.cpp \ + ../insets/ExternalTemplate.cpp \ + ../insets/ExternalTransforms.cpp \ + ../insets/InsetLayout.cpp \ + ../LaTeXPackages.cpp \ + ../Layout.cpp \ + ../LayoutFile.cpp \ + ../LayoutModuleList.cpp \ + ../Length.cpp \ + ../lengthcommon.cpp \ + ../Lexer.cpp \ + ../ModuleList.cpp \ + ../Spacing.cpp \ + ../TextClass.cpp \ + ../version.cpp + +BUILT_SOURCES = $(PCH_FILE) tex2lyx_SOURCES = \ - $(linked_files) \ - Spacing.h \ - gettext.C \ - gettext.h \ - lyxfont.C \ - lyxfont.h \ - texparser.C \ - texparser.h \ - tex2lyx.C \ + $(LINKED_FILES) \ + boost.cpp \ + Context.cpp \ + Context.h \ + math.cpp \ + Parser.cpp \ + Parser.h \ + Preamble.cpp \ + Preamble.h \ + table.cpp \ + tex2lyx.cpp \ tex2lyx.h \ - preamble.C \ - math.C \ - table.C \ - text.C + text.cpp tex2lyx_LDADD = \ - ../support/libsupport.la \ - ../../boost/libs/regex/src/libboostregex.la - -FloatList.C: link_files - -link_files: - for i in $(linked_files); do \ - ln -sf "$(top_srcdir)/src/$$i" . ; \ - done ; \ - for i in $(graphics_linked_files); do \ - ln -sf "$(top_srcdir)/src/graphics/$$i" . ; \ - done + $(top_builddir)/src/support/liblyxsupport.a \ + $(INTLLIBS) $(LIBICONV) $(BOOST_LIBS) \ + $(QT4_LIB) $(QT4_LDFLAGS) \ + @LIBS@ $(LIBSHLWAPI) $(LIBPSAPI) -rm_link_files: - rm -f $(linked_files) $(graphics_linked_files) +if INSTALL_MACOSX +tex2lyx_LDFLAGS = -framework AppKit +endif