mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
fc3a2761de
Move OS dependent code where it belongs. * src/lyx_cb.C: Remove unused include * src/support/os.h * src/support/os_unix.C * src/support/os_win32.C * src/support/os_cygwin.C: Move here the code from fontutils.[Ch] * src/support/os_cygwin.C (external_path, external_path_list): don't differentiate anymore on Qt/X11 or Qt/Win builds. * src/support/environment.C (setEnvPath): get rid of the #ifdef for cygwin. * src/lyx_main.C (LyX::exec): addFontResources and restoreFontResources are now in the os namespace. * src/support/Makefile.am * src/client/Makefile.am * src/tex2lyx/Makefile.am * development/scons/scons_manifest.py: Updated * src/support/fontutils.[Ch]: Removed git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16655 a592a061-630c-0410-9148-cb99ea01b6c8
32 lines
581 B
Makefile
32 lines
581 B
Makefile
include $(top_srcdir)/config/common.am
|
|
|
|
CLEANFILES += $(man_MANS)
|
|
|
|
EXTRA_DIST = pch.h lyxclient.man
|
|
|
|
BUILT_SOURCES = $(PCH_FILE)
|
|
|
|
man_MANS = lyxclient.1
|
|
|
|
bin_PROGRAMS = lyxclient
|
|
|
|
AM_CPPFLAGS += $(PCH_FLAGS) -I$(srcdir)/.. $(BOOST_INCLUDES)
|
|
|
|
BOOST_LIBS = $(BOOST_REGEX) $(BOOST_FILESYSTEM)
|
|
|
|
lyxclient_LDADD = \
|
|
$(top_builddir)/src/support/libsupport.la \
|
|
$(BOOST_LIBS) $(LIBICONV) $(INTLLIBS) @LIBS@ $(SOCKET_LIBS)
|
|
|
|
lyxclient_SOURCES = \
|
|
boost.C \
|
|
client.C \
|
|
debug.C \
|
|
debug.h \
|
|
gettext.C \
|
|
messages.C \
|
|
messages.h
|
|
|
|
lyxclient.1:
|
|
cp -p $(srcdir)/lyxclient.man lyxclient.1
|