diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-12-09 21:44:21 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-12-09 21:44:21 -0800 |
| commit | 9168d166ae30a23b208b1d28ca2978f4e4309edd (patch) | |
| tree | 6588088eb22486f2836b65f92c6041181e75e68a /tools/mrbc/Makefile | |
| parent | dc18042e058f4e2e29725d475917723b70b0b66e (diff) | |
| parent | dcdd893bed1a4c416766d83cdc181e680e97ce61 (diff) | |
| download | mruby-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/Makefile | 2 |
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) |
