diff options
| author | mattn <[email protected]> | 2012-04-20 10:56:12 +0900 |
|---|---|---|
| committer | mattn <[email protected]> | 2012-04-20 10:56:12 +0900 |
| commit | 975031cd2b51974f2d23834eeb502584c6442f14 (patch) | |
| tree | 8c04e6bd722c71d0ccd2255c9e29d06643a0ce9b /mrblib/Makefile | |
| parent | e0d6430f63c4cbe0c71ce82ee23284671389a818 (diff) | |
| download | mruby-975031cd2b51974f2d23834eeb502584c6442f14.tar.gz mruby-975031cd2b51974f2d23834eeb502584c6442f14.zip | |
fix Makefile: quoted CC/LL are heap up to each Makefiles.
Diffstat (limited to 'mrblib/Makefile')
| -rw-r--r-- | mrblib/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mrblib/Makefile b/mrblib/Makefile index 91dfe4c64..0192ec941 100644 --- a/mrblib/Makefile +++ b/mrblib/Makefile @@ -15,6 +15,7 @@ MRBS := $(MRB1) # C compiler (gcc) CC = gcc +LL = gcc DEBUG_MODE = 1 ifeq ($(DEBUG_MODE),1) CFLAGS = -g @@ -23,7 +24,7 @@ CFLAGS = -O3 endif INCLUDES = -I../src -I../include 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) # mruby compiler ifeq ($(OS),Windows_NT) |
