X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftex2lyx%2FMakefile.am;h=f0334822cd58ace08524aaedaceab2ba7c1d25b8;hb=3628ceec480c3d8fa9673f80f781eb1153fb9e1f;hp=c9b1d4b25f66b621087a91a7f6302e3e01729d06;hpb=903917f3b83beb51568741e54a7f7471decb0e4b;p=lyx.git diff --git a/src/tex2lyx/Makefile.am b/src/tex2lyx/Makefile.am index c9b1d4b25f..f0334822cd 100644 --- a/src/tex2lyx/Makefile.am +++ b/src/tex2lyx/Makefile.am @@ -1,6 +1,6 @@ include $(top_srcdir)/config/common.am -EXTRA_DIST = TODO.txt tex2lyx.1in $(TEST_FILES) $(TEST_RESULTS) pch.h \ +EXTRA_DIST = TODO.txt tex2lyx.1in $(TEST_FILES) $(TEST_RESULTS) \ CMakeLists.txt test/CMakeLists.txt #noinst_LIBRARIES = libtexparser.a @@ -17,7 +17,7 @@ bin_PROGRAMS = tex2lyx DEFAULT_INCLUDES = -AM_CPPFLAGS += $(PCH_FLAGS) -I$(top_srcdir)/src/tex2lyx \ +AM_CPPFLAGS += -I$(top_srcdir)/src/tex2lyx \ -I$(top_srcdir)/src -I$(top_builddir) -I$(top_builddir)/src \ $(BOOST_INCLUDES) @@ -33,7 +33,9 @@ TEST_FILES = \ test/foo.eps \ test/foo.png \ test/test-insets.tex \ + test/test-insets-basic.tex \ test/test.ltx \ + test/test-memoir.tex \ test/test-modules.tex \ test/test-refstyle-theorems.tex \ test/test-scr.tex \ @@ -52,7 +54,9 @@ TEST_RESULTS = \ test/DummyDocument.lyx.lyx \ test/Dummy~Document.lyx.lyx \ test/test-insets.lyx.lyx \ + test/test-insets-basic.lyx.lyx \ test/test.lyx.lyx \ + test/test-memoir.lyx.lyx \ test/test-modules.lyx.lyx \ test/test-refstyle-theorems.lyx.lyx \ test/test-scr.lyx.lyx \ @@ -63,6 +67,10 @@ TEST_RESULTS = \ alltests: check alltests-recursive alltests-recursive: tex2lyx + if test "$(srcdir)" = "$(builddir)"; then \ + echo "tex2lyx tests require a separate build directory"; \ + exit 1; \ + fi @$(PYTHON) "$(srcdir)/test/runtests.py"; \ if test $$? -eq 0; then \ echo -e "=====================\ntex2lyx tests passed.\n====================="; \ @@ -97,8 +105,6 @@ LINKED_FILES = \ ../TextClass.cpp \ ../version.cpp -BUILT_SOURCES = $(PCH_FILE) - tex2lyx_SOURCES = \ $(LINKED_FILES) \ boost.cpp \ @@ -122,7 +128,9 @@ tex2lyx_LDADD = \ @LIBS@ $(LIBSHLWAPI) $(LIBPSAPI) if INSTALL_MACOSX -tex2lyx_LDFLAGS = -framework AppKit +tex2lyx_LDFLAGS = -framework AppKit \ + -Wl,-rpath,@loader_path/../Frameworks \ + -Wl,-rpath,@executable_path/../Frameworks endif .PHONY: alltests alltests-recursive updatetests