From d1e8257d2d9b9dd479c56026612f7a9d3dc16277 Mon Sep 17 00:00:00 2001 From: Steven Noonan Date: Wed, 30 Sep 2009 01:01:19 -0700 Subject: Revert "util/*/Makefile: allow compiler selection on command-line" This reverts commit 4be2bf2502f892afebbb0ea51d621556c0e88019. For some reason, CC is defined by GNU make by default. Signed-off-by: Steven Noonan --- crawl-ref/source/util/lua/src/Makefile | 2 +- crawl-ref/source/util/sqlite/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/util') diff --git a/crawl-ref/source/util/lua/src/Makefile b/crawl-ref/source/util/lua/src/Makefile index 000555fae7..d5f5222207 100644 --- a/crawl-ref/source/util/lua/src/Makefile +++ b/crawl-ref/source/util/lua/src/Makefile @@ -9,7 +9,7 @@ # Your platform. See PLATS for possible values. PLAT= none -CC ?= gcc +CC= gcc CFLAGS= -O2 -Wall $(MYCFLAGS) AR= ar rcu RANLIB= ranlib diff --git a/crawl-ref/source/util/sqlite/Makefile b/crawl-ref/source/util/sqlite/Makefile index 520bd75714..2bc3970561 100644 --- a/crawl-ref/source/util/sqlite/Makefile +++ b/crawl-ref/source/util/sqlite/Makefile @@ -4,7 +4,7 @@ LIBSQL = libsqlite3.a AR = ar rcu -CC ?= gcc +CC = gcc RANLIB = ranlib RM_F = rm -f -- cgit v1.2.3-54-g00ecf