From 1eff3ad37fdb9dcf9f8528fdacea0ebf0e79d545 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 1 Feb 2014 14:36:44 +0100 Subject: [PATCH] Add missing file --- functions.mk | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 functions.mk diff --git a/functions.mk b/functions.mk new file mode 100644 index 00000000..51f64570 --- /dev/null +++ b/functions.mk @@ -0,0 +1,7 @@ +# Utility function for recursively finding files, e.g. +# ‘$(call rwildcard, path/to/dir, *.c *.h)’. +rwildcard=$(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) $(filter $(subst *,%,$2),$d)) + +# Given a file name, produce the corresponding dependency file +# (e.g. ‘foo/bar.o’ becomes ‘foo/.bar.o.dep’). +filename-to-dep = $(dir $1).$(notdir $1).dep