summaryrefslogtreecommitdiff
path: root/tools/mid2agb
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2017-05-21 12:17:01 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2017-05-21 12:17:01 -0400
commit2ef0ea3098d09d20ea8fb4140e78e6e5717e0ac7 (patch)
tree085ea1e53b2a70996728ed08aad0566da69f0f52 /tools/mid2agb
parenta8314b86903e5168e017345a4a0d1a5e9ec480aa (diff)
parentbfe02a627f9f49a94f90835d4284ab89d4e5a6f9 (diff)
Merge branch 'master' of github.com:pret/pokeruby into field_map_obj
Diffstat (limited to 'tools/mid2agb')
-rw-r--r--tools/mid2agb/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/mid2agb/Makefile b/tools/mid2agb/Makefile
index 3215169d3..accd81882 100644
--- a/tools/mid2agb/Makefile
+++ b/tools/mid2agb/Makefile
@@ -1,6 +1,6 @@
CXX := g++
-CXXFLAGS := -std=c++11 -O2 -Wall -Wno-switch
+CXXFLAGS := -std=c++11 -O2 -s -Wall -Wno-switch
SRCS := agb.cpp error.cpp main.cpp midi.cpp tables.cpp
@@ -9,7 +9,7 @@ HEADERS := agb.h error.h main.h midi.h tables.h
.PHONY: clean
mid2agb: $(SRCS) $(HEADERS)
- $(CXX) $(CXXFLAGS) $(SRCS) -o $@
+ $(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)
clean:
$(RM) mid2agb mid2agb.exe