ignore errors in the find command for dep checks
[openwrt-10.03/.git] / include / depends.mk
1
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # define a dependency on a subtree
8 # parameters:
9 #       1: directory
10 #       2: directory dependency
11 #       3: tempfile for file listings
12 #       4: find options
13
14 FINDPARAMS := -type f -not -name ".*" -and -not -path "*.svn*" 
15 define rdep
16   $(foreach file,$(shell find $(1) $(FINDPARAMS) -and -not -path "*:*" $(4)),
17     $(2): $(file)
18     $(file): ;
19   )
20
21   ifneq ($(shell find $(1) $(FINDPARAMS) $(4) 2>/dev/null | md5s),$(shell cat $(3) 2>/dev/null))
22     $(2): $(3)
23   endif
24   
25   $(3): FORCE
26         @-find $(1) $(FINDPARAMS) $(4) 2>/dev/null | md5s > $$@
27
28 endef