commit c33809f844e5aa429e1d6f9c581a0fc7bf965b3c Author: Jiri Slaby Date: Mon Jun 25 14:39:38 2007 +0200 add cscope target to maekfile diff --git a/Makefile b/Makefile index bcb2589..1aec332 100644 --- a/Makefile +++ b/Makefile @@ -14,4 +14,7 @@ all: clean: $(KBUILD) clean -.PHONY: all clean +cscope: + cscope -b `find $(src) -type f -name '*.[ch]'` + +.PHONY: all clean cscope