mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
a4319c2b89
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9341 a592a061-630c-0410-9148-cb99ea01b6c8
34 lines
663 B
Makefile
34 lines
663 B
Makefile
include $(top_srcdir)/config/common.am
|
|
|
|
EXTRA_DIST = lyxclient.man
|
|
|
|
man_MANS = lyxclient.1
|
|
|
|
bin_PROGRAMS = lyxclient
|
|
|
|
AM_CPPFLAGS = $(PCH_FLAGS) -I$(srcdir)/../ $(BOOST_INCLUDES)
|
|
|
|
if USE_INCLUDED_BOOST
|
|
BOOST_LIBS = $(top_builddir)/boost/libs/filesystem/src/libboostfilesystem.la \
|
|
$(top_builddir)/boost/libs/regex/src/libboostregex.la
|
|
else
|
|
BOOST_LIBS = -lboost_regex -lboost_filesystem
|
|
endif
|
|
|
|
lyxclient_LDADD = \
|
|
$(top_builddir)/src/support/libsupport.la \
|
|
$(BOOST_LIBS) $(INTLLIBS)
|
|
|
|
lyxclient_SOURCES = \
|
|
boost.C \
|
|
client.C \
|
|
debug.C \
|
|
debug.h \
|
|
gettext.C \
|
|
gettext.h \
|
|
messages.C \
|
|
messages.h
|
|
|
|
lyxclient.1:
|
|
cp -p $(srcdir)/lyxclient.man lyxclient.1
|