2005-07-15 16:38:59 +00:00
|
|
|
include $(top_srcdir)/config/common.am
|
|
|
|
|
2015-09-25 08:58:17 +00:00
|
|
|
CLEANFILES = *.pyc *.pyo
|
2005-07-15 16:38:59 +00:00
|
|
|
|
2014-08-31 13:21:20 +00:00
|
|
|
EXTRA_DIST = lyx2lyx_version.py.in test_parser_tools.py CMakeLists.txt
|
2006-04-24 13:34:16 +00:00
|
|
|
|
2006-08-09 20:51:55 +00:00
|
|
|
CHMOD = chmod
|
|
|
|
|
2005-07-15 16:38:59 +00:00
|
|
|
lyx2lyxdir = $(pkgdatadir)/lyx2lyx
|
|
|
|
dist_lyx2lyx_PYTHON = \
|
|
|
|
lyx2lyx \
|
2006-04-10 16:18:31 +00:00
|
|
|
lyx2lyx_version.py \
|
2006-08-08 11:21:24 +00:00
|
|
|
lyx2lyx_lang.py \
|
2006-08-14 21:54:42 +00:00
|
|
|
generate_encoding_info.py \
|
2005-07-15 16:38:59 +00:00
|
|
|
parser_tools.py \
|
2010-11-04 15:59:38 +00:00
|
|
|
lyx2lyx_tools.py \
|
|
|
|
unicode_symbols.py \
|
2005-07-15 16:38:59 +00:00
|
|
|
LyX.py \
|
2006-08-08 11:21:24 +00:00
|
|
|
lyx_0_06.py \
|
|
|
|
lyx_0_08.py \
|
|
|
|
lyx_0_10.py \
|
2005-07-15 16:38:59 +00:00
|
|
|
lyx_0_12.py \
|
2006-08-08 11:21:24 +00:00
|
|
|
lyx_1_0.py \
|
|
|
|
lyx_1_1.py \
|
2005-07-15 16:38:59 +00:00
|
|
|
lyx_1_1_5.py \
|
2006-08-08 11:21:24 +00:00
|
|
|
lyx_1_1_6_0.py \
|
|
|
|
lyx_1_1_6_3.py \
|
2005-07-15 16:38:59 +00:00
|
|
|
lyx_1_2.py \
|
|
|
|
lyx_1_3.py \
|
|
|
|
lyx_1_4.py \
|
2006-06-05 19:24:18 +00:00
|
|
|
lyx_1_5.py \
|
2007-08-12 13:25:36 +00:00
|
|
|
lyx_1_6.py \
|
2008-12-03 22:46:53 +00:00
|
|
|
lyx_2_0.py \
|
2011-05-09 17:58:03 +00:00
|
|
|
lyx_2_1.py \
|
2014-05-12 13:16:31 +00:00
|
|
|
lyx_2_2.py \
|
2016-06-03 05:40:21 +00:00
|
|
|
lyx_2_3.py \
|
2018-02-23 07:58:16 +00:00
|
|
|
lyx_2_4.py \
|
2024-05-13 05:26:41 +00:00
|
|
|
lyx_2_5.py \
|
2006-08-08 11:21:24 +00:00
|
|
|
test_parser_tools.py
|
2006-08-09 20:51:55 +00:00
|
|
|
|
|
|
|
install-data-hook:
|
|
|
|
$(CHMOD) 755 $(DESTDIR)$(lyx2lyxdir)/lyx2lyx
|
2014-05-29 12:57:05 +00:00
|
|
|
|
|
|
|
alltests: check alltests-recursive
|
|
|
|
|
|
|
|
alltests-recursive:
|
|
|
|
@$(PYTHON) "$(srcdir)/test_parser_tools.py"; \
|
|
|
|
if test $$? -eq 0; then \
|
|
|
|
echo -e "=====================\nlyx2lyx tests passed.\n====================="; \
|
|
|
|
else \
|
|
|
|
echo -e "=====================\nlyx2lyx tests failed.\n====================="; \
|
|
|
|
fi
|