summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorEvan Lloyd <evan.lloyd@arm.com>2015-12-03 09:47:51 +0000
committerEvan Lloyd <evan.lloyd@arm.com>2016-04-01 12:33:09 +0100
commitb169f6a9a1091224899e7d1872dfdd99b38e349e (patch)
tree459c85e4c63cc47dd59d0bd989ea0eb74782bdee /tools
parentbb5a762c3fc9c023ed8a69ff8661c9e6c118a48a (diff)
Make:Use "simply expanded" make variables.
Replace some "recursively expanded" make variables with "simply expanded" variables (i.e. replace = with :=). This has no functional impact but is more consistent and theoretically more efficient. Change-Id: Iaf33d7c8ad48464ae0d39923515d1e7f230c95c1
Diffstat (limited to 'tools')
-rw-r--r--tools/fip_create/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/fip_create/Makefile b/tools/fip_create/Makefile
index da993024..b12e0638 100644
--- a/tools/fip_create/Makefile
+++ b/tools/fip_create/Makefile
@@ -32,11 +32,11 @@ MAKE_HELPERS_DIRECTORY := ../../make_helpers/
include ${MAKE_HELPERS_DIRECTORY}build_macros.mk
include ${MAKE_HELPERS_DIRECTORY}build_env.mk
-PROJECT = fip_create
-OBJECTS = fip_create.o
+PROJECT := fip_create
+OBJECTS := fip_create.o
COPIED_H_FILES := uuid.h firmware_image_package.h
-CFLAGS = -Wall -Werror -pedantic -std=c99
+CFLAGS := -Wall -Werror -pedantic -std=c99
ifeq (${DEBUG},1)
CFLAGS += -g -O0 -DDEBUG
else
@@ -44,7 +44,7 @@ else
endif
# Only include from local directory (see comment below).
-INCLUDE_PATHS = -I.
+INCLUDE_PATHS := -I.
CC := gcc