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


			
			
				VER-2-0-4-PATCH
			
			
		
Werner Lemberg 25 years ago
parent 65ce050bfa
commit 6828c90c5f
  1. 2
      builds/ansi/ansi-def.mk
  2. 2
      builds/compiler/ansi-cc.mk
  3. 2
      builds/compiler/gcc-dev.mk
  4. 2
      builds/compiler/gcc.mk
  5. 2
      builds/compiler/unix-lcc.mk
  6. 2
      builds/os2/os2-dev.mk
  7. 2
      builds/os2/os2-gcc.mk
  8. 7
      builds/toplevel.mk

@ -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…
Cancel
Save