X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftex2lyx%2FMakefile.am;h=a4a5fdc65f87c405de00c5fcabc19a6dbc18a119;hb=ce8929e9b237af569934b434154d199634363268;hp=7973ea8216e25c3e2e9d28ef301868572f06926e;hpb=f329d2c2ec11fd1ddafc1e787e75ae00aaa2a207;p=lyx.git diff --git a/src/tex2lyx/Makefile.am b/src/tex2lyx/Makefile.am index 7973ea8216..a4a5fdc65f 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,9 +17,9 @@ 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) + $(BOOST_INCLUDES) $(ICONV_INCLUDES) $(ZLIB_INCLUDES) TEST_FILES = \ test/runtests.cmake \ @@ -33,7 +33,7 @@ TEST_FILES = \ test/foo.eps \ test/foo.png \ test/test-insets.tex \ - test/test-insets-basic.lyx \ + test/test-insets-basic.tex \ test/test.ltx \ test/test-memoir.tex \ test/test-modules.tex \ @@ -67,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====================="; \ @@ -79,6 +83,7 @@ updatetests: tex2lyx LINKED_FILES = \ ../Author.cpp \ + ../CiteEnginesList.cpp \ ../Color.cpp \ ../Counters.cpp \ ../Encoding.cpp \ @@ -101,8 +106,6 @@ LINKED_FILES = \ ../TextClass.cpp \ ../version.cpp -BUILT_SOURCES = $(PCH_FILE) - tex2lyx_SOURCES = \ $(LINKED_FILES) \ boost.cpp \ @@ -123,10 +126,12 @@ tex2lyx_LDADD = \ $(top_builddir)/src/support/liblyxsupport.a \ $(LIBICONV) $(BOOST_LIBS) \ $(QT_LIB) $(QT_LDFLAGS) \ - @LIBS@ $(LIBSHLWAPI) $(LIBPSAPI) + @LIBS@ $(ICONV_LIBS) $(ZLIB_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