Willem Cazander
a0141d962c
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 5s
26 lines
757 B
Makefile
26 lines
757 B
Makefile
|
||
define mb-make-space-newline
|
||
$(MB_ᕽᕽᕽ )
|
||
$(MB_ᕽᕽᕽ )
|
||
endef
|
||
$(call mb-make-call,mb-doc-function-deep,mb-make-space-newline,Prints a newline character.)
|
||
|
||
|
||
define mb-make-space-tab
|
||
$(MB_ᕽᕽᕽ ) $(MB_ᕽᕽᕽ )
|
||
endef
|
||
$(call mb-make-call,mb-doc-function-deep,mb-make-space-tab,Prints a tab character.)
|
||
|
||
|
||
define mb-make-space-white
|
||
$(MB_ᕽᕽᕽ )$(subst ,, )
|
||
endef
|
||
$(call mb-make-call,mb-doc-function-deep,mb-make-space-white,Prints a white space character.)
|
||
|
||
|
||
define mb-make-space-white-to-comma
|
||
$(MB_ᕽᕽᕽ )$(subst $(call mb-make-call,mb-make-space-white),$(MB_MAKE_COMMA),$1)
|
||
endef
|
||
$(call mb-make-call,mb-doc-function-deep,mb-make-space-white-to-comma,Replaces all spaces with comma's.,<input>)
|
||
|