aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 937b277..476436c 100644
--- a/Makefile
+++ b/Makefile
@@ -35,4 +35,21 @@ bios.bin: bios.bin.elf
clean:
rm -f $(obj-y) $(all-y) bios.bin.elf
+ rm -f cscope.* tags TAGS
rm -rf .deps
+
+.PHONY: cscope
+cscope:
+ rm -f cscope.*
+ find . -name "*.[chsS]" -print | sed 's,^\./,,' > cscope.files
+ cscope -b -i cscope.files
+
+.PHONY: ctags
+ctags:
+ rm -f tags
+ find . -name "*.[ch]" -exec ctags --append {} +
+
+.PHONY: TAGS
+TAGS:
+ rm -f TAGS
+ find . -name "*.[ch]" -exec etags --append {} +