diff options
author | Brian Norris <computersforpeace@gmail.com> | 2015-02-17 18:18:34 -0800 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2015-02-28 13:52:48 +0800 |
commit | 1b0eaa2cc2dc52dced546c1c8b0551cfc734d32d (patch) | |
tree | 071d51e77c286d18cd6e83fc80fb7031223df7b6 /tools/thermal | |
parent | 3dc3712a823dcedf0c3218aeb2b1e271439cae1b (diff) | |
download | linux-1b0eaa2cc2dc52dced546c1c8b0551cfc734d32d.tar.gz linux-1b0eaa2cc2dc52dced546c1c8b0551cfc734d32d.tar.bz2 linux-1b0eaa2cc2dc52dced546c1c8b0551cfc734d32d.zip |
tools/thermal: tmon: support cross-compiling
We might want to prepare CFLAGS outside of this Makefile, so don't
overwrite its initial value.
Then, support $(CROSS_COMPILE), so we can use a cross-compile toolchain.
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Acked-by: Jacob Pan <jacob.jun.pan@linux.intel.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'tools/thermal')
-rw-r--r-- | tools/thermal/tmon/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/thermal/tmon/Makefile b/tools/thermal/tmon/Makefile index e775adcbd29f..13d1876c7889 100644 --- a/tools/thermal/tmon/Makefile +++ b/tools/thermal/tmon/Makefile @@ -2,8 +2,8 @@ VERSION = 1.0 BINDIR=usr/bin WARNFLAGS=-Wall -Wshadow -W -Wformat -Wimplicit-function-declaration -Wimplicit-int -CFLAGS= -O1 ${WARNFLAGS} -fstack-protector -CC=gcc +CFLAGS+= -O1 ${WARNFLAGS} -fstack-protector +CC=$(CROSS_COMPILE)gcc CFLAGS+=-D VERSION=\"$(VERSION)\" LDFLAGS+= |