Skip to content

Commit 9dad020

Browse files
committed
Added 'TO_UPPER'/'TO_LOWER' to support file/variable pairing in Doxygen.mk
1 parent 90c712a commit 9dad020

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Utilities.mk

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
TO_UPPER=$(shell echo '$1' | tr a-z A-Z)
2+
TO_LOWER=$(shell echo '$1' | tr A-Z a-z)
3+
14
# Row-major: { for(x:$1) for(y:$2) x(y) }
25
DO_EA=$(foreach L,$1,$(call $L,$2))
36
# Composed row-major: { ... for(z:$3) x(y(z)) }

0 commit comments

Comments
 (0)