lyx_mirror/src/tex2lyx/Makefile.am
Jean-Marc Lasgouttes a6d6c632fd Overhaul of the tex2lyx manpage
- make it autogenerated
- clean up the markup
- remove obsolete information
- try to update in general

Hopefully I did not break the markup...


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28871 a592a061-630c-0410-9148-cb99ea01b6c8
2009-03-19 22:31:22 +00:00

76 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 \
gettext.cpp \
Parser.cpp \
Parser.h \
tex2lyx.cpp \
tex2lyx.h \
preamble.cpp \
math.cpp \
table.cpp \
text.cpp
tex2lyx_LDADD = \
$(top_builddir)/src/support/liblyxsupport.a \
$(LIBICONV) $(BOOST_LIBS) \
$(QT4_LIB) $(QT4_LDFLAGS) \
@LIBS@ $(LIBSHLWAPI)