mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
30 lines
540 B
Makefile
30 lines
540 B
Makefile
|
include $(top_srcdir)/config/common.am
|
||
|
|
||
|
EXTRA_DIST = lyxclient.man
|
||
|
|
||
|
man_MANS = lyxclient.1
|
||
|
|
||
|
bin_PROGRAMS = lyxclient
|
||
|
|
||
|
INCLUDES = $(BOOST_INCLUDES)
|
||
|
|
||
|
AM_CXXFLAGS = $(PCH_FLAGS)
|
||
|
|
||
|
lyxclient_LDADD = \
|
||
|
$(top_builddir)/src/support/libsupport.la \
|
||
|
$(top_builddir)/boost/libs/filesystem/src/libboostfilesystem.la \
|
||
|
$(top_builddir)/boost/libs/regex/src/libboostregex.la
|
||
|
|
||
|
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
|