mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
2c3f9b1482
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10331 a592a061-630c-0410-9148-cb99ea01b6c8
73 lines
1.2 KiB
Makefile
73 lines
1.2 KiB
Makefile
include $(top_srcdir)/config/common.am
|
|
|
|
EXTRA_DIST = tex2lyx.man pch.h test-structure.tex test-insets.tex
|
|
|
|
DISTCLEANFILES += tex2lyx.1 $(LINKED_SOURCES)
|
|
|
|
#noinst_LTLIBRARIES = libtexparser.la
|
|
#
|
|
#libtexparser_la_SOURCES = \
|
|
# texparser.C \
|
|
# texparser.h
|
|
#
|
|
#tex2lyx_LDADD = libtexparser.la
|
|
|
|
man_MANS = tex2lyx.1
|
|
|
|
bin_PROGRAMS = tex2lyx
|
|
|
|
AM_CPPFLAGS += $(PCH_FLAGS) -I$(srcdir)/.. $(BOOST_INCLUDES)
|
|
|
|
BOOST_LIBS = $(BOOST_REGEX) $(BOOST_FILESYSTEM)
|
|
|
|
if USE_COMPRESSION
|
|
COMPRESSIONLIB = -lz
|
|
endif
|
|
|
|
LINKED_SOURCES = \
|
|
FloatList.C \
|
|
Floating.C \
|
|
counters.C \
|
|
lyxlayout.h \
|
|
lyxlayout.C \
|
|
lyxtextclass.C \
|
|
lyxtextclass.h \
|
|
lyxlex.C \
|
|
lyxlex_pimpl.C
|
|
|
|
BUILT_SOURCES = $(PCH_FILE) $(LINKED_SOURCES)
|
|
|
|
tex2lyx_SOURCES = \
|
|
$(LINKED_SOURCES) \
|
|
Spacing.h \
|
|
boost.C \
|
|
context.C \
|
|
context.h \
|
|
gettext.C \
|
|
gettext.h \
|
|
lengthcommon.C \
|
|
lyxfont.C \
|
|
lyxfont.h \
|
|
texparser.C \
|
|
texparser.h \
|
|
tex2lyx.C \
|
|
tex2lyx.h \
|
|
preamble.C \
|
|
math.C \
|
|
table.C \
|
|
text.C
|
|
|
|
tex2lyx_LDADD = \
|
|
$(top_builddir)/src/support/libsupport.la \
|
|
$(BOOST_LIBS) $(COMPRESSIONLIB)
|
|
|
|
$(LINKED_SOURCES) :
|
|
@rm -f $@ ; \
|
|
$(LN_S) $(top_srcdir)/src/$@ .
|
|
|
|
rm_link_files:
|
|
rm -f $(LINKED_SOURCES)
|
|
|
|
tex2lyx.1:
|
|
cp -p $(srcdir)/tex2lyx.man tex2lyx.1
|