]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/Makefile.am
Removed all redundant using directives from the source.
[lyx.git] / src / tex2lyx / Makefile.am
index cc6a83c40a17093528e38bf19e7cb229e1718647..8eb294b56d673906cf2714ce0bc236900215fcbc 100644 (file)
@@ -1,6 +1,7 @@
 include $(top_srcdir)/config/common.am
 
 INCLUDES = -I$(srcdir)/../ $(BOOST_INCLUDES)
+EXTRA_DIST = test-structure.tex test-insets.tex
 
 #noinst_LTLIBRARIES = libtexparser.la
 #
@@ -12,7 +13,27 @@ INCLUDES = -I$(srcdir)/../ $(BOOST_INCLUDES)
 
 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
+
 tex2lyx_SOURCES = \
+       $(linked_files) \
+       Spacing.h \
+       context.C \
+       context.h \
+       gettext.C \
+       gettext.h \
+       lyxfont.C \
+       lyxfont.h \
        texparser.C \
        texparser.h \
        tex2lyx.C \
@@ -21,3 +42,18 @@ tex2lyx_SOURCES = \
        math.C \
        table.C \
        text.C
+
+tex2lyx_LDADD = \
+       ../support/libsupport.la \
+       ../../boost/libs/regex/src/libboostregex.la -lz
+
+FloatList.C: link_files
+
+link_files:
+       @for i in $(linked_files); do \
+               rm -f $$i; \
+               ln -s "$(top_srcdir)/src/$$i" . ; \
+       done
+
+rm_link_files:
+       rm -f $(linked_files)