|
 2.6.2
 Makefile
diff -Nru a/Makefile b/Makefile
--- a/Makefile Tue Feb 3 19:45:33 2004
+++ b/Makefile Tue Feb 3 19:45:33 2004
@@ -1,7 +1,8 @@
VERSION = 2
PATCHLEVEL = 6
-SUBLEVEL = 1
+SUBLEVEL = 2
EXTRAVERSION =
+NAME=Feisty Dunnart
# *DOCUMENTATION*
# To see a list of typical targets execute "make help"
@@ -690,7 +691,7 @@
_modinst_:
@if [ -z "`$(DEPMOD) -V | grep module-init-tools`" ]; then \
echo "Warning: you may need to install module-init-tools"; \
- echo "See http://www.codemonkey.org.uk/post-halloween-2.5.txt";\
+ echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt";\
sleep 1; \
fi
@rm -rf $(MODLIB)/kernel
@@ -825,8 +826,15 @@
-name '*.[chS]' -print )
endef
-quiet_cmd_cscope = MAKE $@
-cmd_cscope = $(all-sources) | cscope -k -b -i -
+quiet_cmd_cscope-file = FILELST cscope.files
+ cmd_cscope-file = $(all-sources) > cscope.files
+
+quiet_cmd_cscope = MAKE cscope.out
+ cmd_cscope = cscope -k -b
+
+cscope: FORCE
+ $(call cmd,cscope-file)
+ $(call cmd,cscope)
quiet_cmd_TAGS = MAKE $@
cmd_TAGS = $(all-sources) | etags -
@@ -839,9 +847,6 @@
CTAGSF=`ctags --version | grep -i exuberant >/dev/null && echo "-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_NOVERS"`+
; \
$(all-sources) | xargs ctags $$CTAGSF -a
endef
-
-cscope: FORCE
- $(call cmd,cscope)
TAGS: FORCE
$(call cmd,TAGS)
|