mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
27de1486ca
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@140 a592a061-630c-0410-9148-cb99ea01b6c8
28 lines
817 B
Makefile
28 lines
817 B
Makefile
AUTOMAKE_OPTIONS = foreign
|
|
DISTCLEANFILES= *.orig *.rej *~ *.bak reLyX reLyX.1
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
bin_SCRIPTS = reLyX
|
|
LYXDATADIRS = reLyX reLyX/Text
|
|
LYXDISTDIRS = Text
|
|
man_MANS = reLyX.1
|
|
EXTRA_DIST = BUGS BasicLyX.pm CHANGES CleanTeX.pm LastLyX.pm MANIFEST \
|
|
MakePreamble.pm ReadCommands.pm RelyxTable.pm reLyX.pod \
|
|
reLyXmain.pl syntax.default test.ltx test.lyx reLyX.man \
|
|
$(LYXDISTDIRS)
|
|
|
|
LIBINSTFILES = *.pm *.pl README BUGS CHANGES reLyX.pod syntax.default Text/*.pm
|
|
|
|
reLyX.1:
|
|
cp -p $(srcdir)/reLyX.man reLyX.1
|
|
|
|
libinstalldirs:
|
|
for dir in $(LYXDATADIRS) ; do \
|
|
$(mkinstalldirs) $(pkgdatadir)/$$dir ; \
|
|
done
|
|
|
|
install-data-local: libinstalldirs
|
|
files=`cd ${srcdir} ; echo $(LIBINSTFILES)` ; \
|
|
for i in $${files} ; do \
|
|
$(INSTALL_DATA) ${srcdir}/$$i $(pkgdatadir)/reLyX/$$i ; \
|
|
done
|