summaryrefslogtreecommitdiffhomepage
path: root/tools/mrbc/Makefile
diff options
context:
space:
mode:
authorYuichiro MASUI <[email protected]>2012-12-09 18:44:23 +0900
committerYuichiro MASUI <[email protected]>2012-12-09 19:18:40 +0900
commitdcdd893bed1a4c416766d83cdc181e680e97ce61 (patch)
tree94ed6d87e06bdb54f98e1b4428d17625d274f08c /tools/mrbc/Makefile
parent453980d76ae0ac22dc490612fefcab9cd756950f (diff)
downloadmruby-dcdd893bed1a4c416766d83cdc181e680e97ce61.tar.gz
mruby-dcdd893bed1a4c416766d83cdc181e680e97ce61.zip
Added LDFLAGS to Makefiles
Diffstat (limited to 'tools/mrbc/Makefile')
-rw-r--r--tools/mrbc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mrbc/Makefile b/tools/mrbc/Makefile
index 9da1776bd..ea2286021 100644
--- a/tools/mrbc/Makefile
+++ b/tools/mrbc/Makefile
@@ -52,7 +52,7 @@ all : $(EXE)
# executable constructed using linker from object files
$(EXE) : $(OBJS) $(LIBR)
- $(LL) -o $@ $(OBJS) $(LIBR) $(LIBS)
+ $(LL) -o $@ $(LDFLAGS) $(OBJS) $(LIBR) $(LIBS)
-include $(OBJS:.o=.d)