mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 10:40:48 +00:00
d9e4ced1d4
object instead. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30505 a592a061-630c-0410-9148-cb99ea01b6c8
75 lines
1.3 KiB
Makefile
75 lines
1.3 KiB
Makefile
include $(top_srcdir)/config/common.am
|
|
|
|
EXTRA_DIST = tex2lyx.1in $(TEST_FILES) pch.h
|
|
|
|
#noinst_LIBRARIES = libtexparser.a
|
|
#
|
|
#libtexparser_a_SOURCES = \
|
|
# Parser.cpp \
|
|
# Parser.h
|
|
#
|
|
#tex2lyx_LDADD = libtexparser.a
|
|
|
|
man_MANS = tex2lyx.1
|
|
|
|
bin_PROGRAMS = tex2lyx
|
|
|
|
DEFAULT_INCLUDES =
|
|
|
|
AM_CPPFLAGS += -DTEX2LYX $(PCH_FLAGS) -I$(top_srcdir)/src/tex2lyx \
|
|
-I$(top_srcdir)/src -I$(top_builddir) $(BOOST_INCLUDES)
|
|
|
|
TEST_FILES = \
|
|
test/box-color-size-space-align.tex \
|
|
test/DummyDocument.tex \
|
|
test/foo.eps \
|
|
test/foo.png \
|
|
test/test-insets.tex \
|
|
test/test.ltx \
|
|
test/test-structure.tex
|
|
|
|
LINKED_FILES = \
|
|
../FloatList.cpp \
|
|
../Floating.cpp \
|
|
../Counters.cpp \
|
|
../insets/InsetLayout.cpp \
|
|
../LayoutFile.h \
|
|
../Layout.h \
|
|
../Layout.cpp \
|
|
../LayoutModuleList.h \
|
|
../LayoutModuleList.cpp \
|
|
../ModuleList.h \
|
|
../ModuleList.cpp \
|
|
../TextClass.cpp \
|
|
../TextClass.h \
|
|
../Lexer.cpp \
|
|
../lengthcommon.cpp \
|
|
../Color.cpp \
|
|
../Color.h \
|
|
../Encoding.cpp
|
|
|
|
BUILT_SOURCES = $(PCH_FILE)
|
|
|
|
tex2lyx_SOURCES = \
|
|
$(LINKED_FILES) \
|
|
Spacing.h \
|
|
boost.cpp \
|
|
Context.cpp \
|
|
Context.h \
|
|
Font.cpp \
|
|
Font.h \
|
|
Parser.cpp \
|
|
Parser.h \
|
|
tex2lyx.cpp \
|
|
tex2lyx.h \
|
|
preamble.cpp \
|
|
math.cpp \
|
|
table.cpp \
|
|
text.cpp
|
|
|
|
tex2lyx_LDADD = \
|
|
$(top_builddir)/src/support/liblyxsupport.a \
|
|
$(INTLLIBS) $(LIBICONV) $(BOOST_LIBS) \
|
|
$(QT4_LIB) $(QT4_LDFLAGS) \
|
|
@LIBS@ $(LIBSHLWAPI) $(LIBPSAPI)
|