X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2FMakefile.am;h=ab353b497beffabf3ce0a64275f6f1880f1cdc85;hb=3f59d7e2cc6a3f9a09631c804b49b6d28e05d857;hp=883e4faf6b9be341509523ccebc2e0a199439c24;hpb=150cf11651ad92090a452bb9e6cb72d7eea886d5;p=lyx.git diff --git a/src/support/Makefile.am b/src/support/Makefile.am index 883e4faf6b..ab353b497b 100644 --- a/src/support/Makefile.am +++ b/src/support/Makefile.am @@ -5,54 +5,65 @@ CLEANFILES += $(BUILT_SOURCES) EXTRA_DIST = pch.h \ os_cygwin.cpp os_unix.cpp os_win32.cpp os_win32.h -noinst_LTLIBRARIES = liblyxsupport.la - -liblyxsupport_la_LIBADD = $(LIBSHLWAPI) $(QT4_CORE_LIB) $(BOOST_SIGNALS) -liblyxsupport_la_LDFLAGS = $(QT4_CORE_LDFLAGS) +noinst_LIBRARIES = liblyxsupport.a BUILT_SOURCES = $(PCH_FILE) -AM_CPPFLAGS += $(PCH_FLAGS) -I$(srcdir)/.. $(BOOST_INCLUDES) -AM_CPPFLAGS += $(QT4_CPPFLAGS) $(QT4_CORE_INCLUDES) -I$(srcdir)/minizip +######################### Qt stuff ############################# +# + +MOCHEADER = SystemcallPrivate.h + +MOCEDFILES = $(MOCHEADER:%.h=moc_%.cpp) + +CLEANFILES += $(MOCEDFILES) +BUILT_SOURCES += $(MOCEDFILES) + +moc_%.cpp: %.h + $(MOC4) -o $@ $< -# force the use of C++ compiler for minizip/*.c files, because -# gcc can not go through the included boost files. -liblyxsupport_la_CFLAGS = -x c++ +liblyxsupport_a_DEPENDENCIES = $(MOCEDFILES) -liblyxsupport_la_SOURCES = \ +# +################################################################## + +AM_CPPFLAGS += $(PCH_FLAGS) -I$(srcdir)/.. $(BOOST_INCLUDES) +AM_CPPFLAGS += $(QT4_CPPFLAGS) $(QT4_INCLUDES) + +liblyxsupport_a_SOURCES = \ FileMonitor.h \ FileMonitor.cpp \ RandomAccessList.h \ - abort.cpp \ - chdir.cpp \ + bind.h \ convert.cpp \ convert.h \ - copy.cpp \ copied_ptr.h \ - cow_ptr.h \ + debug.cpp \ + debug.h \ docstream.cpp \ docstream.h \ docstring.cpp \ docstring.h \ + docstring_list.h \ environment.h \ environment.cpp \ ExceptionMessage.h \ - FileFilterList.cpp \ - FileFilterList.h \ FileName.cpp \ FileName.h \ + FileNameList.h \ filetools.cpp \ filetools.h \ - Forkedcall.cpp \ - Forkedcall.h \ - ForkedCallQueue.cpp \ - ForkedCallQueue.h \ - ForkedcallsController.cpp \ - ForkedcallsController.h \ - getcwd.cpp \ + foreach.h \ + ForkedCalls.cpp \ + ForkedCalls.h \ + functional.h \ + gettext.cpp \ + gettext.h \ gzstream.cpp \ gzstream.h \ kill.cpp \ + lassert.h \ + lassert.cpp \ limited_stack.h \ lstrings.cpp \ lstrings.h \ @@ -60,25 +71,31 @@ liblyxsupport_la_SOURCES = \ lyxlib.h \ lyxtime.cpp \ lyxtime.h \ - lyxsum.cpp \ - mkdir.cpp \ + 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 \ - rename.cpp \ + regex.h \ socktools.cpp \ socktools.h \ strfwd.h \ Systemcall.cpp \ Systemcall.h \ - SignalSlot.cpp \ - SignalSlot.h \ - SignalSlotPrivate.h \ - tempname.cpp \ + SystemcallPrivate.h \ + shared_ptr.h \ + TempFile.cpp \ + TempFile.h \ textutils.h \ Translator.h \ Timeout.cpp \ @@ -88,16 +105,34 @@ liblyxsupport_la_SOURCES = \ userinfo.h \ unicode.cpp \ unicode.h \ - minizip/crypt.h \ - minizip/ioapi.c \ - minizip/ioapi.h \ - minizip/iowin32.c \ - minizip/iowin32.h \ - minizip/unzip.c \ - minizip/unzip.h \ - minizip/zip.c \ - minizip/zip.h \ - minizip/zipunzip.cpp + weighted_btree.h +if USE_INCLUDED_MYTHES +liblyxsupport_a_SOURCES += \ + mythes/mythes.cxx \ + mythes/mythes.hxx \ + mythes/license.readme +endif + +#if INSTALL_MACOSX +#liblyxsupport_a_SOURCES += \ +# AppleSpellChecker.h \ +# AppleSpellChecker.mm +#endif + +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 \ + linkback/LinkBackProxy.m \ + linkback/LinkBackServer.h \ + linkback/LinkBackServer.m +endif ############################## Tests ################################## @@ -111,35 +146,37 @@ EXTRA_DIST += \ TESTS = \ - test_convert \ - test_filetools \ - test_lstrings + tests/test_convert \ + tests/test_filetools \ + tests/test_lstrings check_PROGRAMS = \ check_convert \ check_filetools \ check_lstrings -check_convert_LDADD = ../debug.o convert.o docstring.o lstrings.o unicode.o \ - $(BOOST_LIBS) $(QT4_CORE_LIB) -check_convert_LDFLAGS = $(QT4_CORE_LDFLAGS) +check_convert_LDADD = liblyxsupport.a $(LIBICONV) $(BOOST_LIBS) $(QT4_CORE_LIBS) $(LIBSHLWAPI) +check_convert_LDFLAGS = $(QT4_LDFLAGS) check_convert_SOURCES = \ tests/check_convert.cpp \ + tests/dummy_functions.cpp \ tests/boost.cpp -check_filetools_LDADD = ../debug.o libsupport.la $(BOOST_LIBS) +check_filetools_LDADD = liblyxsupport.a $(LIBICONV) $(BOOST_LIBS) $(QT4_CORE_LIBS) $(LIBSHLWAPI) +check_filetools_LDFLAGS = $(QT4_CORE_LDFLAGS) check_filetools_SOURCES = \ tests/check_filetools.cpp \ + tests/dummy_functions.cpp \ tests/boost.cpp -check_lstrings_LDADD = ../debug.o lstrings.o convert.o docstring.o unicode.o \ - $(QT4_CORE_LIB) +check_lstrings_LDADD = liblyxsupport.a $(LIBICONV) $(BOOST_LIBS) $(QT4_CORE_LIBS) $(LIBSHLWAPI) check_lstrings_LDFLAGS = $(QT4_CORE_LDFLAGS) check_lstrings_SOURCES = \ tests/check_lstrings.cpp \ + tests/dummy_functions.cpp \ tests/boost.cpp makeregfiles: ${check_PROGRAMS} for all in ${check_PROGRAMS} ; do \ - ./$$all > ${srcdir}/regfiles/$$all ; \ + ./$$all > ${srcdir}/tests/regfiles/$$all ; \ done