summaryrefslogtreecommitdiffhomepage
path: root/tools/mrbc/Makefile
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2012-12-09 21:44:21 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2012-12-09 21:44:21 -0800
commit9168d166ae30a23b208b1d28ca2978f4e4309edd (patch)
tree6588088eb22486f2836b65f92c6041181e75e68a /tools/mrbc/Makefile
parentdc18042e058f4e2e29725d475917723b70b0b66e (diff)
parentdcdd893bed1a4c416766d83cdc181e680e97ce61 (diff)
downloadmruby-9168d166ae30a23b208b1d28ca2978f4e4309edd.tar.gz
mruby-9168d166ae30a23b208b1d28ca2978f4e4309edd.zip
Merge pull request #603 from masuidrive/add_ldflags_to_makefiles
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)