]> git.lyx.org Git - features.git/blobdiff - src/tex2lyx/Makefile.am
More pch work.
[features.git] / src / tex2lyx / Makefile.am
index 5896615b9e3e698444d2eeada10b3dc5aa184401..517413c2d9209580c7d45e946ec9acba69222d14 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 += $(BUILT_SOURCES)
 
 #noinst_LTLIBRARIES = libtexparser.la
 #
@@ -12,10 +14,11 @@ INCLUDES = -I$(srcdir)/../ $(BOOST_INCLUDES)
 
 bin_PROGRAMS = tex2lyx
 
-linked_files = \
+AM_CXXFLAGS = $(PCH_FLAGS)
+
+BUILT_SOURCES = \
        FloatList.C \
        Floating.C \
-       boost.C \
        counters.C \
        lyxlayout.h \
        lyxlayout.C \
@@ -25,10 +28,14 @@ linked_files = \
        lyxlex_pimpl.C
 
 tex2lyx_SOURCES = \
-       $(linked_files) \
+       $(BUILT_SOURCES) \
        Spacing.h \
+       boost.C \
+       context.C \
+       context.h \
        gettext.C \
        gettext.h \
+       lengthcommon.C \
        lyxfont.C \
        lyxfont.h \
        texparser.C \
@@ -42,15 +49,11 @@ tex2lyx_SOURCES = \
 
 tex2lyx_LDADD = \
        ../support/libsupport.la \
-       ../../boost/libs/regex/src/libboostregex.la
-
-FloatList.C: link_files 
+       ../../boost/libs/regex/src/libboostregex.la -lz
 
-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)
+       rm -f $(BUILT_SOURCES)