Introduced $(space) in the makefiles to get rid of using the comment

separator for indicating a trailing space.
This commit is contained in:
Werner Lemberg 2000-11-04 23:41:02 +00:00
parent 77fb4cedff
commit 91481f8a4b
8 changed files with 14 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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