X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=Makefile.am;h=ceb8d9653a6c9f02ed2cddfda77502cb3b5f06fb;hb=43dd383073fc61cfe5f24b87294c4e8698a1827a;hp=6df1254bd93dbfef5b399deb068225139e186aa0;hpb=d7e2705228d0580a16046a3f3c19f453a035b99d;p=lyx.git diff --git a/Makefile.am b/Makefile.am index 6df1254bd9..ceb8d9653a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,7 +22,7 @@ SUBDIRS = config development po $(BOOST) src sourcedoc lib \ EXTRA_DIST = ANNOUNCE INSTALL.autoconf RELEASE-NOTES UPGRADING \ INSTALL.Win32 INSTALL.MacOSX INSTALL.cmake \ README.Win32 README.Cygwin README.localization lyx.1in \ - autogen.sh + autogen.sh CMakeLists.txt po/CMakeLists.txt man_MANS = lyx.1 @@ -46,16 +46,27 @@ rpmdist: dist rm lyx.png; exit $$saved_status doxydoc: - cd sourcedoc; make doxydoc + cd sourcedoc; $(MAKE) doxydoc -lfundoc: - development/tools/gen_lfuns.py src/LyXAction.cpp > lib/doc/LFUNs.lyx +lfundoc: $(srcdir)/lib/doc/LFUNs.lyx + +$(srcdir)/lib/doc/LFUNs.lyx: $(srcdir)/development/tools/gen_lfuns.py $(srcdir)/src/LyXAction.cpp + $(AM_V_GEN)$(PYTHON) $^ >$@ 2>/dev/null keystest: development/keystest/lyx_make.sh +alltests: check alltests-recursive + +alltests-recursive: + cd lib; $(MAKE) alltests-recursive + cd src; $(MAKE) alltests-recursive + +updatetests: + cd src; $(MAKE) updatetests + lgbtags: etags --totals=yes --recurse=yes -o TAGS $(top_srcdir)/* -.PHONY: doxydoc +.PHONY: doxydoc alltests alltests-recursive updatetests