2 # Copyright (C) 2007 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
7 # define a dependency on a subtree
10 # 2: directory dependency
11 # 3: tempfile for file listings
14 FINDPARAMS
:= -type f
-not
-name
".*" -and
-not
-path
"*.svn*"
16 $(foreach file
,$(shell find
$(1) $(FINDPARAMS
) -and
-not
-path
"*:*" $(4)),
21 ifneq ($(shell find
$(1) $(FINDPARAMS
) $(4) 2>/dev
/null | md5s
),$(shell cat
$(3) 2>/dev
/null
))
26 @
-find
$(1) $(FINDPARAMS
) $(4) 2>/dev
/null | md5s
> $$@
This page took 0.044057 seconds and 5 git commands to generate.