From 975031cd2b51974f2d23834eeb502584c6442f14 Mon Sep 17 00:00:00 2001 From: mattn Date: Fri, 20 Apr 2012 10:56:12 +0900 Subject: fix Makefile: quoted CC/LL are heap up to each Makefiles. --- src/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/Makefile b/src/Makefile index 41a2c83a0..ea3681dce 100644 --- a/src/Makefile +++ b/src/Makefile @@ -34,6 +34,7 @@ INCLUDES = -I$(BASEDIR) -I$(BASEDIR)/../include # compiler, linker (gcc) CC = gcc +LL = gcc AR = ar YACC = bison @@ -44,7 +45,7 @@ else CFLAGS = -O3 endif ALL_CFLAGS = -Wall -Werror-implicit-function-declaration $(CFLAGS) -MAKE_FLAGS = --no-print-directory CC="$(CC)" LL="$(LL)" +MAKE_FLAGS = --no-print-directory CC=$(CC) LL=$(LL) ############################## # generic build targets, rules -- cgit v1.2.3