1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

make: Add variable definitions for comma and space

This commit is contained in:
Koen Zandberg 2020-10-09 11:46:49 +02:00
parent b11acf1940
commit 8e0ac2aeab
No known key found for this signature in database
GPG Key ID: 0895A893E6D2985B

View File

@ -1,6 +1,10 @@
# Utilities to set variables and environment for targets
# The variables defined here cover edge cases in make string handling.
# These functions should help replacing immediate evaluation and global 'export'
comma := ,
blank :=
space := $(blank) $(blank)
# Evaluate a deferred variable only once on its first usage
# Uses after that will be as if it was an immediate evaluation