aboutsummaryrefslogtreecommitdiffstats
path: root/code/unix/Makefile
diff options
context:
space:
mode:
authorludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-09-02 12:28:54 +0000
committerludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-09-02 12:28:54 +0000
commitf5de4773415589c3e6ed64f9f67479b4f8bb9668 (patch)
tree362c702506e18b97ef4710386b1aecf5c0f338c4 /code/unix/Makefile
parentdaabf6c805d0748529574bb43a94f2f1463c000a (diff)
downloadioquake3-aero-f5de4773415589c3e6ed64f9f67479b4f8bb9668.tar.gz
ioquake3-aero-f5de4773415589c3e6ed64f9f67479b4f8bb9668.zip
remove =? assignments. use "make CC=foo" instead of "CC=foo make"
git-svn-id: svn://svn.icculus.org/quake3/trunk@66 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/unix/Makefile')
-rw-r--r--code/unix/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/code/unix/Makefile b/code/unix/Makefile
index 5d13521..4cbad3b 100644
--- a/code/unix/Makefile
+++ b/code/unix/Makefile
@@ -94,8 +94,8 @@ LIB=lib
ifeq ($(PLATFORM),linux)
GLIBC=-glibc
- CC?=gcc
- CXX?=g++
+ CC=gcc
+ CXX=g++
RPMARCH=$(ARCH)
ifeq ($(ARCH),alpha)
@@ -163,9 +163,9 @@ ifeq ($(PLATFORM),linux)
SHLIBCFLAGS=-fPIC
SHLIBLDFLAGS=-shared $(LDFLAGS)
- AR?=ar
+ AR=ar
ARFLAGS=rv
- RANLIB?=ranlib
+ RANLIB=ranlib
THREAD_LDFLAGS=-lpthread
LDFLAGS=-ldl -lm