c/f: make it possible to pass CXX / CC from env vars

sayer/1.4-spce2.6
Stefan Sayer 14 years ago
parent 7b5cf590d3
commit a83b8e1e21

@ -159,9 +159,9 @@ ifeq ($(ARCH),sparc)
endif
# need OS specific for this ?
CXX = g++
CC = gcc
LD = $(CC)
CXX ?= g++
CC ?= gcc
LD ?= $(CC)
CXXFLAGS += -Wall -Wno-reorder -fPIC -g $(EXTRA_CXXFLAGS)
CFLAGS += -Wall -fPIC -g $(EXTRA_CFLAGS)

Loading…
Cancel
Save