summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorstefanct <stefanct@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2015-01-10 09:33:00 +0000
committerstefanct <stefanct@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2015-01-10 09:33:00 +0000
commit585723e2e9581ff2915e3d682babee96824e6cb0 (patch)
tree0a896cc927d9ed385499afcf5262931f7a9bc5e1 /Makefile
parenta944b6ad6fa81aa88b7f10ce4fbd7eb0577b32ee (diff)
downloadflashrom-585723e2e9581ff2915e3d682babee96824e6cb0.tar.gz
Remove defaults for CC and AR.
AR defaults to "ar" anyway in GNU make and instead of gcc it is probably a better idea to use just cc. The latter allows to build on freebsd 10 without overriding CC or doing symlink tricks (because it uses clang as cc, provides multiple gcc packages but only versioned binaries without any actual "gcc" command name in the path). Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1865 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 0 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 96a51a3..201dd07 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,6 @@ PROGRAM = flashrom
#
# Note for anyone editing this Makefile: gnumake will happily ignore any
# changes in this Makefile to variables set on the command line.
-CC ?= gcc
STRIP ?= strip
INSTALL = install
DIFF = diff
@@ -37,7 +36,6 @@ PREFIX ?= /usr/local
MANDIR ?= $(PREFIX)/share/man
CFLAGS ?= -Os -Wall -Wshadow
EXPORTDIR ?= .
-AR ?= ar
RANLIB ?= ranlib
LIBS_BASE ?= ..