mirror of https://github.com/freetype/freetype
Introduced $(space) in the makefiles to get rid of using the comment
separator for indicating a trailing space.
This commit is contained in:
parent
77fb4cedff
commit
91481f8a4b
|
@ -72,7 +72,7 @@ L := -l
|
|||
|
||||
# Target flag.
|
||||
#
|
||||
T := -o # Don't remove this comment line! We need the space after `-o'.
|
||||
T := -o$(space)
|
||||
|
||||
|
||||
# C flags
|
||||
|
|
|
@ -50,7 +50,7 @@ L := -l
|
|||
|
||||
# Target flag.
|
||||
#
|
||||
T := -o # Don't remove this comment line! We need the space after `-o'.
|
||||
T := -o$(space)
|
||||
|
||||
|
||||
# C flags
|
||||
|
|
|
@ -50,7 +50,7 @@ L := -l
|
|||
|
||||
# Target flag.
|
||||
#
|
||||
T := -o # Don't remove this comment line! We need the space after `-o'.
|
||||
T := -o$(space)
|
||||
|
||||
|
||||
# C flags
|
||||
|
|
|
@ -50,7 +50,7 @@ L := -l
|
|||
|
||||
# Target flag.
|
||||
#
|
||||
T := -o # Don't remove this comment line! We need the space after `-o'.
|
||||
T := -o$(space)
|
||||
|
||||
|
||||
# C flags
|
||||
|
|
|
@ -52,7 +52,7 @@ L := -l
|
|||
|
||||
# Target flag.
|
||||
#
|
||||
T := -o # don't remove this comment, we need a trailing space !!
|
||||
T := -o$(space)
|
||||
|
||||
|
||||
# C flags
|
||||
|
|
|
@ -88,7 +88,7 @@ L := -l
|
|||
|
||||
# Target flag.
|
||||
#
|
||||
T := -o # Don't remove this comment line! We need the space after `-o'.
|
||||
T := -o$(space)
|
||||
|
||||
|
||||
# C flags
|
||||
|
|
|
@ -87,7 +87,7 @@ L := -l
|
|||
|
||||
# Target flag.
|
||||
#
|
||||
T := -o # Don't remove this comment line! We need the space after `-o'.
|
||||
T := -o$(space)
|
||||
|
||||
|
||||
# C flags
|
||||
|
|
|
@ -36,6 +36,13 @@
|
|||
|
||||
.PHONY: setup
|
||||
|
||||
# The `space' variable is used to avoid trailing spaces in defining the
|
||||
# `T' variable later.
|
||||
#
|
||||
empty :=
|
||||
space := $(empty) $(empty)
|
||||
|
||||
|
||||
ifndef CONFIG_MK
|
||||
CONFIG_MK := config.mk
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue