blob: 103a4155a58f79f14c6caa83340da128b05f9959 [file] [log] [blame]
Etienne Carriere3ddc3622017-03-13 15:31:15 +01001# Makefile script used in various OP-TEE test components
2
3# Since 'clean' make rules rely on 'rmdir', removed directories shall
4# not end with 'current directory' (./ or .) subpath information.
5# This macro remove trailing './' info from input path.
6define strip-trailing-slashes-and-dots
7$(eval _o := $(patsubst %/,%,$(patsubst %/.,%,$(1))))$(if \
8 $(filter-out $(1),$(_o)),$(call strip-trailing-slashes-and-dots,$(_o)),$(_o))
9endef