diff options
author | Cameron <cameron@VirtualBox.(none)> | 2017-05-11 21:51:54 -0500 |
---|---|---|
committer | Cameron <cameron@VirtualBox.(none)> | 2017-05-11 21:51:54 -0500 |
commit | 46048394acb7f6441a362c41cc16b7d7d31ba210 (patch) | |
tree | f4bff2cb6846d06f54cef32d862f5ff6266c0571 /tools/mid2agb | |
parent | ca3da9a99901a20aa1b32a2bd9063fb49bb8612a (diff) |
add LDFLAGS variable to tools makefiles
Diffstat (limited to 'tools/mid2agb')
-rw-r--r-- | tools/mid2agb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mid2agb/Makefile b/tools/mid2agb/Makefile index 3215169d3..029432022 100644 --- a/tools/mid2agb/Makefile +++ b/tools/mid2agb/Makefile @@ -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 |