]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/Makefile.am
Add a Buffer::fully_loaded member function, returning true only when
[lyx.git] / src / tex2lyx / Makefile.am
index f773de61868c8639ebee25f8cde8765f881fa443..7b22fe5f49bbae3ff5eec195f01608d655c69169 100644 (file)
@@ -1,6 +1,8 @@
 include $(top_srcdir)/config/common.am
 
 INCLUDES = -I$(srcdir)/../ $(BOOST_INCLUDES)
+EXTRA_DIST = test-structure.tex test-insets.tex
+DISTCLEANFILES += $(linked_files)
 
 #noinst_LTLIBRARIES = libtexparser.la
 #
@@ -12,10 +14,9 @@ INCLUDES = -I$(srcdir)/../ $(BOOST_INCLUDES)
 
 bin_PROGRAMS = tex2lyx
 
-linked_files = \
+BUILT_SOURCES = \
        FloatList.C \
        Floating.C \
-       boost.C \
        counters.C \
        lyxlayout.h \
        lyxlayout.C \
@@ -25,8 +26,11 @@ linked_files = \
        lyxlex_pimpl.C
 
 tex2lyx_SOURCES = \
-       $(linked_files) \
+       $(BUILT_SOURCES) \
        Spacing.h \
+       boost.C \
+       context.C \
+       context.h \
        gettext.C \
        gettext.h \
        lyxfont.C \
@@ -44,13 +48,9 @@ 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
+$(BUILT_SOURCES) :
+       @rm -f $@ ; \
+       $(LN_S) $(top_srcdir)/src/$@ .
 
 rm_link_files:
        rm -f $(linked_files)