Make variable references in Makefiles consistent

Some variable references were written as $(foo), but the majority were
written as ${foo}. This commit changes all of the variable references
to using braces.
This commit is contained in:
William Hubbs
2011-10-19 12:22:23 -05:00
parent ecf77254bb
commit 9c77502f96
6 changed files with 20 additions and 20 deletions

View File

@@ -4,19 +4,19 @@ INC= net.example
MK= ../mk
include ${MK}/os.mk
ifeq ($(OS),FreeBSD)
ifeq (${OS},FreeBSD)
SRCS+= net.example.in
.SUFFIXES: .BSD.in
.BSD.in:
${CP} $< $@
else ifeq ($(OS),Linux)
else ifeq (${OS},Linux)
SRCS+= net.example.in
.SUFFIXES: .Linux.in
.Linux.in:
${CP} $< $@
else ifeq ($(OS),NetBSD)
else ifeq (${OS},NetBSD)
SRCS+= net.example.in
.SUFFIXES: .BSD.in