mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
0be91e7205
(dist_pkgdata_PYTHON): and put it here (dist_scripts_DATA): rename to dist_scripts_PYTHON; this invokes automake's built-in python support. (install-data-hook): adapt to above change. * lib/lyx2lyx/Makefile.am (dist_lyx2lyx_DATA): rename to dist_lyx2lyx_PYTHON; this invokes automake's built-in python support. (install-data-hook): new target: sets executable bit on lyx2lyx. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14592 a592a061-630c-0410-9148-cb99ea01b6c8
35 lines
588 B
Makefile
35 lines
588 B
Makefile
include $(top_srcdir)/config/common.am
|
|
|
|
CLEANFILES += *.pyc *.pyo
|
|
|
|
EXTRA_DIST = lyx2lyx_version.py.in
|
|
|
|
CHMOD = chmod
|
|
|
|
lyx2lyxdir = $(pkgdatadir)/lyx2lyx
|
|
dist_lyx2lyx_PYTHON = \
|
|
lyx2lyx \
|
|
lyx2lyx_version.py \
|
|
lyx2lyx_lang.py \
|
|
generate_enconding_info.py \
|
|
parser_tools.py \
|
|
LyX.py \
|
|
lyx_0_06.py \
|
|
lyx_0_08.py \
|
|
lyx_0_10.py \
|
|
lyx_0_12.py \
|
|
lyx_1_0.py \
|
|
lyx_1_1.py \
|
|
lyx_1_1_5.py \
|
|
lyx_1_1_6_0.py \
|
|
lyx_1_1_6_3.py \
|
|
lyx_1_2.py \
|
|
lyx_1_3.py \
|
|
lyx_1_4.py \
|
|
lyx_1_5.py \
|
|
profiling.py \
|
|
test_parser_tools.py
|
|
|
|
install-data-hook:
|
|
$(CHMOD) 755 $(DESTDIR)$(lyx2lyxdir)/lyx2lyx
|