diff options
author | Horst Kronstorfer <hkronsto@frequentis.com> | 2011-07-18 01:21:18 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-07-28 16:30:52 +0200 |
commit | 857d9ea67a4d70baf88a4495f8b70fef9f626ddc (patch) | |
tree | 53f8d0eb4a05247366c17ccdfa79d68bfc3fb17e | |
parent | c7506c2b0325efc5c586425feca9f0e567f2e8b4 (diff) | |
download | u-boot-imx-857d9ea67a4d70baf88a4495f8b70fef9f626ddc.zip u-boot-imx-857d9ea67a4d70baf88a4495f8b70fef9f626ddc.tar.gz u-boot-imx-857d9ea67a4d70baf88a4495f8b70fef9f626ddc.tar.bz2 |
Let source cross-reference targets follow symbolic links
Tell 'find' to follow symbolic links, so that files under include/asm
and arch/$(ARCH)/include/asm/arch are added to the indexing file list.
Signed-off-by: Horst Kronstorfer <hkronsto@frequentis.com>
Acked-by: Detlev Zundel <dzu@denx.de>
-rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -468,15 +468,19 @@ TAG_SUBDIRS = $(SUBDIRS) TAG_SUBDIRS += $(dir $(__LIBS)) TAG_SUBDIRS += include +FIND := find +FINDFLAGS := -L + tags ctags: - ctags -w -o $(obj)ctags `find $(TAG_SUBDIRS) \ + ctags -w -o $(obj)ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ -name '*.[chS]' -print` etags: - etags -a -o $(obj)etags `find $(TAG_SUBDIRS) \ + etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ -name '*.[chS]' -print` cscope: - find $(TAG_SUBDIRS) -name '*.[chS]' -print > cscope.files + $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \ + cscope.files cscope -b -q -k SYSTEM_MAP = \ |