# HG changeset patch # User Rik # Date 1345044783 25200 # Node ID 3b8275fed4dd9ba65e1ce1347850b4ea405859a1 # Parent ae658d7b687044fda3c8b9cc518f344e3efe220e build: Add rule to build ctags for *.m files in scripts directory. * scripts/Makefile.am: Add rule to build ctags for *.m files in scripts directory. diff --git a/scripts/Makefile.am b/scripts/Makefile.am --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -371,6 +371,12 @@ done ) | ../run-octave -qf .PHONY: check-missing-semicolon +## Add rule to generate ctags. +## Automake would normally generate such a rule, but only if there is a +## xxx_SOURCES target +ctags: + ctags $(addprefix $(srcdir)/, $(FCN_FILES)) $(GEN_FCN_FILES) + install-data-local: install-startup-files install-pkg-add uninstall-local: uninstall-startup-files uninstall-pkg-add