X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2FMakefile.am;h=d3c902cc8e349703de0d755d563ac2feffbc3ff8;hb=28be7d552f62cc02fa86d7f79201d089bfb2d7b5;hp=a6287330b4020b0c03edc100180a514ea501de3b;hpb=cf570e0a8d5e257b8b8c2201e125a3139c11d557;p=lyx.git diff --git a/src/support/Makefile.am b/src/support/Makefile.am index a6287330b4..d3c902cc8e 100644 --- a/src/support/Makefile.am +++ b/src/support/Makefile.am @@ -1,40 +1,46 @@ include $(top_srcdir)/config/common.am -CLEANFILES += $(BUILT_SOURCES) - -EXTRA_DIST = pch.h \ - os_cygwin.cpp os_unix.cpp os_win32.cpp os_win32.h +EXTRA_DIST = os_cygwin.cpp os_unix.cpp os_win32.cpp os_win32.h \ + CMakeLists.txt tests/CMakeLists.txt tests/supporttest.cmake noinst_LIBRARIES = liblyxsupport.a -BUILT_SOURCES = $(PCH_FILE) ######################### Qt stuff ############################# # -MOCHEADER = SystemcallPrivate.h +MOCHEADER = \ + ConsoleApplicationPrivate.h \ + FileMonitor.h \ + SystemcallPrivate.h MOCEDFILES = $(MOCHEADER:%.h=moc_%.cpp) -CLEANFILES += $(MOCEDFILES) -BUILT_SOURCES += $(MOCEDFILES) +CLEANFILES = $(MOCEDFILES) +BUILT_SOURCES = $(MOCEDFILES) moc_%.cpp: %.h - $(MOC4) -o $@ $< + $(AM_V_GEN)$(QT_MOC) -o $@ $< liblyxsupport_a_DEPENDENCIES = $(MOCEDFILES) # ################################################################## -AM_CPPFLAGS += $(PCH_FLAGS) -I$(srcdir)/.. $(BOOST_INCLUDES) -AM_CPPFLAGS += $(QT4_CPPFLAGS) $(QT4_CORE_INCLUDES) +AM_CPPFLAGS += -I$(srcdir)/.. \ + $(BOOST_INCLUDES) $(ICONV_INCLUDES) $(ZLIB_INCLUDES) \ + $(QT_CPPFLAGS) $(QT_INCLUDES) liblyxsupport_a_SOURCES = \ FileMonitor.h \ FileMonitor.cpp \ RandomAccessList.h \ bind.h \ + Cache.h \ + Changer.h \ + ConsoleApplication.cpp \ + ConsoleApplication.h \ + ConsoleApplicationPrivate.h \ convert.cpp \ convert.h \ copied_ptr.h \ @@ -53,7 +59,6 @@ liblyxsupport_a_SOURCES = \ FileNameList.h \ filetools.cpp \ filetools.h \ - foreach.h \ ForkedCalls.cpp \ ForkedCalls.h \ functional.h \ @@ -71,39 +76,45 @@ liblyxsupport_a_SOURCES = \ lyxlib.h \ lyxtime.cpp \ lyxtime.h \ + mutex.h \ + mutex.cpp \ Messages.cpp \ Messages.h \ numpunct_lyx_char_type.h \ os.cpp \ os.h \ - Path.cpp \ - Path.h \ + PathChanger.cpp \ + PathChanger.h \ Package.cpp \ Package.h \ ProgressInterface.h \ + pmprof.h \ qstring_helpers.cpp \ qstring_helpers.h \ regex.h \ + RefChanger.h \ + signals.h \ socktools.cpp \ socktools.h \ strfwd.h \ Systemcall.cpp \ Systemcall.h \ SystemcallPrivate.h \ - shared_ptr.h \ + TempFile.cpp \ + TempFile.h \ textutils.h \ Translator.h \ Timeout.cpp \ Timeout.h \ + trivstring.cpp \ + trivstring.h \ types.h \ + unique_ptr.h \ userinfo.cpp \ userinfo.h \ unicode.cpp \ unicode.h \ - weighted_btree.h \ - mythes/mythes.cxx \ - mythes/mythes.hxx \ - mythes/license.readme + weighted_btree.h #if INSTALL_MACOSX #liblyxsupport_a_SOURCES += \ @@ -115,6 +126,9 @@ if INSTALL_MACOSX liblyxsupport_a_SOURCES += \ AppleSpeller.h \ AppleSpeller.m \ + AppleScript.h \ + AppleScript.m \ + AppleScriptProxy.cpp \ linkback/LinkBack.h \ linkback/LinkBack.m \ linkback/LinkBackProxy.h \ @@ -129,37 +143,55 @@ EXTRA_DIST += \ tests/test_convert \ tests/test_filetools \ tests/test_lstrings \ + tests/test_trivstring \ tests/regfiles/convert \ tests/regfiles/filetools \ - tests/regfiles/lstrings + tests/regfiles/lstrings \ + tests/regfiles/trivstring TESTS = \ tests/test_convert \ tests/test_filetools \ - tests/test_lstrings + tests/test_lstrings \ + tests/test_trivstring check_PROGRAMS = \ check_convert \ check_filetools \ - check_lstrings + check_lstrings \ + check_trivstring + +if INSTALL_MACOSX +ADD_FRAMEWORKS = -framework QtCore -framework AppKit -framework ApplicationServices +endif -check_convert_LDADD = liblyxsupport.a $(INTLLIBS) $(LIBICONV) $(BOOST_LIBS) $(QT4_CORE_LIBS) -check_convert_LDFLAGS = $(QT4_LDFLAGS) +check_convert_LDADD = liblyxsupport.a $(LIBICONV) $(BOOST_LIBS) $(QT_CORE_LIBS) $(LIBSHLWAPI) @LIBS@ +check_convert_LDFLAGS = $(QT_CORE_LDFLAGS) $(ADD_FRAMEWORKS) check_convert_SOURCES = \ tests/check_convert.cpp \ + tests/dummy_functions.cpp \ tests/boost.cpp -check_filetools_LDADD = liblyxsupport.a $(INTLLIBS) $(LIBICONV) $(BOOST_LIBS) $(QT4_CORE_LIBS) -check_filetools_LDFLAGS = $(QT4_CORE_LDFLAGS) +check_filetools_LDADD = liblyxsupport.a $(LIBICONV) $(BOOST_LIBS) $(QT_CORE_LIBS) $(LIBSHLWAPI) @LIBS@ +check_filetools_LDFLAGS = $(QT_CORE_LDFLAGS) $(ADD_FRAMEWORKS) check_filetools_SOURCES = \ tests/check_filetools.cpp \ + tests/dummy_functions.cpp \ tests/boost.cpp -check_lstrings_LDADD = liblyxsupport.a $(INTLLIBS) $(LIBICONV) $(BOOST_LIBS) $(QT4_CORE_LIBS) -check_lstrings_LDFLAGS = $(QT4_CORE_LDFLAGS) +check_lstrings_LDADD = liblyxsupport.a $(LIBICONV) $(BOOST_LIBS) $(QT_CORE_LIBS) $(LIBSHLWAPI) @LIBS@ +check_lstrings_LDFLAGS = $(QT_CORE_LDFLAGS) $(ADD_FRAMEWORKS) check_lstrings_SOURCES = \ tests/check_lstrings.cpp \ + tests/dummy_functions.cpp \ + tests/boost.cpp + +check_trivstring_LDADD = liblyxsupport.a $(LIBICONV) $(BOOST_LIBS) $(QT_CORE_LIBS) $(LIBSHLWAPI) @LIBS@ +check_trivstring_LDFLAGS = $(QT_CORE_LDFLAGS) $(ADD_FRAMEWORKS) +check_trivstring_SOURCES = \ + tests/check_trivstring.cpp \ + tests/dummy_functions.cpp \ tests/boost.cpp makeregfiles: ${check_PROGRAMS}