summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c52fdca131..e552e1d644 100644
--- a/Makefile
+++ b/Makefile
@@ -876,10 +876,10 @@ doxygen:
doxygen DOCS/tech/Doxyfile
TAGS:
- rm -f $@; ( find -name '*.[chS]' -print ) | xargs etags -a
+ rm -f $@; ( find -name '*.[chS]' -o -name '*.asm' -print ) | xargs etags -a
tags:
- rm -f $@; ( find -name '*.[chS]' -print ) | xargs ctags -a
+ rm -f $@; ( find -name '*.[chS]' -o -name '*.asm' -print ) | xargs ctags -a