Add a testsuite (./testsuite) and dependency-logging command stuff that doesn't
[mgear/mgear.git] / experiments / flist.mk
CommitLineData
00804b7c
MM
1# Seeing how long it takes Make to recursively list a directory.
2
3define flist1
4$(if $3,$(foreach 4,$3,$(call flist,$1,$4)),$(info $(2:$1/%=%)))
5endef
6
7define flist
8$(call flist1,$1,$2,$(filter-out %/. %/..,$(wildcard $2/.* $2/*)))
9endef
10
11flist-%:
12 $(call flist,$*,$*)
13
14flist-.: