fix compilation with automake 1.5

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10558 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2005-10-18 09:15:19 +00:00
parent f53511993b
commit 01439a5334
2 changed files with 10 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2005-10-18 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* Makefile.am: rename LINKED_SOURCES to LINKED_FILES.
2005-10-12 Jürgen Spitzmüller <j.spitzmueller@gmx.de> 2005-10-12 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* preamble.C: update format to 245 (do not output \quotes_times). * preamble.C: update format to 245 (do not output \quotes_times).

View File

@ -2,7 +2,7 @@ include $(top_srcdir)/config/common.am
EXTRA_DIST = tex2lyx.man pch.h test-structure.tex test-insets.tex EXTRA_DIST = tex2lyx.man pch.h test-structure.tex test-insets.tex
DISTCLEANFILES += tex2lyx.1 $(LINKED_SOURCES) DISTCLEANFILES += tex2lyx.1 $(LINKED_FILES)
#noinst_LTLIBRARIES = libtexparser.la #noinst_LTLIBRARIES = libtexparser.la
# #
@ -24,7 +24,7 @@ if USE_COMPRESSION
COMPRESSIONLIB = -lz COMPRESSIONLIB = -lz
endif endif
LINKED_SOURCES = \ LINKED_FILES = \
FloatList.C \ FloatList.C \
Floating.C \ Floating.C \
counters.C \ counters.C \
@ -35,10 +35,10 @@ LINKED_SOURCES = \
lyxlex.C \ lyxlex.C \
lyxlex_pimpl.C lyxlex_pimpl.C
BUILT_SOURCES = $(PCH_FILE) $(LINKED_SOURCES) BUILT_SOURCES = $(PCH_FILE) $(LINKED_FILES)
tex2lyx_SOURCES = \ tex2lyx_SOURCES = \
$(LINKED_SOURCES) \ $(LINKED_FILES) \
Spacing.h \ Spacing.h \
boost.C \ boost.C \
context.C \ context.C \
@ -61,12 +61,12 @@ tex2lyx_LDADD = \
$(top_builddir)/src/support/libsupport.la \ $(top_builddir)/src/support/libsupport.la \
$(BOOST_LIBS) $(COMPRESSIONLIB) $(BOOST_LIBS) $(COMPRESSIONLIB)
$(LINKED_SOURCES) : $(LINKED_FILES) :
@rm -f $@ ; \ @rm -f $@ ; \
$(LN_S) $(top_srcdir)/src/$@ . $(LN_S) $(top_srcdir)/src/$@ .
rm_link_files: rm_link_files:
rm -f $(LINKED_SOURCES) rm -f $(LINKED_FILES)
tex2lyx.1: tex2lyx.1:
cp -p $(srcdir)/tex2lyx.man tex2lyx.1 cp -p $(srcdir)/tex2lyx.man tex2lyx.1