2003-02-11 12:37:27 +00:00
|
|
|
include $(top_srcdir)/config/common.am
|
|
|
|
|
|
|
|
INCLUDES = -I$(srcdir)/../ $(BOOST_INCLUDES)
|
|
|
|
|
2003-04-17 09:47:21 +00:00
|
|
|
#noinst_LTLIBRARIES = libtexparser.la
|
|
|
|
#
|
|
|
|
#libtexparser_la_SOURCES = \
|
|
|
|
# texparser.C \
|
2003-04-29 08:46:17 +00:00
|
|
|
# texparser.h
|
2003-04-17 09:47:21 +00:00
|
|
|
#
|
|
|
|
#tex2lyx_LDADD = libtexparser.la
|
2003-02-12 08:36:49 +00:00
|
|
|
|
2003-02-11 12:37:27 +00:00
|
|
|
bin_PROGRAMS = tex2lyx
|
|
|
|
|
2003-07-26 00:15:38 +00:00
|
|
|
linked_files = \
|
|
|
|
FloatList.C \
|
|
|
|
Floating.C \
|
|
|
|
boost.C \
|
|
|
|
counters.C \
|
|
|
|
lyxlayout.h \
|
|
|
|
lyxlayout.C \
|
|
|
|
lyxtextclass.C \
|
|
|
|
lyxtextclass.h \
|
|
|
|
lyxlex.C \
|
|
|
|
lyxlex_pimpl.C
|
|
|
|
|
2003-02-12 08:36:49 +00:00
|
|
|
tex2lyx_SOURCES = \
|
2003-07-26 00:15:38 +00:00
|
|
|
$(linked_files) \
|
|
|
|
Spacing.h \
|
|
|
|
gettext.C \
|
|
|
|
gettext.h \
|
|
|
|
lyxfont.C \
|
|
|
|
lyxfont.h \
|
2003-02-12 08:36:49 +00:00
|
|
|
texparser.C \
|
2003-04-17 09:47:21 +00:00
|
|
|
texparser.h \
|
|
|
|
tex2lyx.C \
|
|
|
|
tex2lyx.h \
|
|
|
|
preamble.C \
|
|
|
|
math.C \
|
|
|
|
table.C \
|
2003-04-29 08:46:17 +00:00
|
|
|
text.C
|
2003-07-26 00:15:38 +00:00
|
|
|
|
|
|
|
tex2lyx_LDADD = \
|
|
|
|
../support/libsupport.la \
|
2003-07-27 23:40:08 +00:00
|
|
|
../../boost/libs/regex/src/libboostregex.la -lz
|
2003-07-26 00:15:38 +00:00
|
|
|
|
2003-07-27 23:40:08 +00:00
|
|
|
FloatList.C: link_files
|
2003-07-26 00:15:38 +00:00
|
|
|
|
|
|
|
link_files:
|
2003-07-30 14:41:27 +00:00
|
|
|
@for i in $(linked_files); do \
|
2003-07-27 15:32:15 +00:00
|
|
|
rm -f $$i; \
|
|
|
|
ln -s "$(top_srcdir)/src/$$i" . ; \
|
2003-07-26 00:15:38 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
rm_link_files:
|
2003-07-27 15:32:15 +00:00
|
|
|
rm -f $(linked_files)
|