Skip to content

Commit

Permalink
remove =? assignments. use "make CC=foo" instead of "CC=foo make"
Browse files Browse the repository at this point in the history
  • Loading branch information
lnussel committed Sep 2, 2005
1 parent 92216f0 commit b0fc4a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/unix/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ LIB=lib
ifeq ($(PLATFORM),linux)

GLIBC=-glibc
CC?=gcc
CXX?=g++
CC=gcc
CXX=g++

RPMARCH=$(ARCH)
ifeq ($(ARCH),alpha)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b0fc4a7

Please sign in to comment.