diff options
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/aif2pcm/Makefile | 4 | ||||
| -rw-r--r-- | tools/bin2c/Makefile | 4 | ||||
| -rw-r--r-- | tools/gbagfx/Makefile | 4 | ||||
| -rw-r--r-- | tools/mid2agb/Makefile | 4 | ||||
| -rw-r--r-- | tools/preproc/Makefile | 4 | ||||
| -rw-r--r-- | tools/ramscrgen/Makefile | 4 | ||||
| -rw-r--r-- | tools/rsfont/Makefile | 4 | ||||
| -rw-r--r-- | tools/scaninc/Makefile | 4 | 
8 files changed, 16 insertions, 16 deletions
| diff --git a/tools/aif2pcm/Makefile b/tools/aif2pcm/Makefile index ec6343b12..611c0e2df 100644 --- a/tools/aif2pcm/Makefile +++ b/tools/aif2pcm/Makefile @@ -1,6 +1,6 @@  CC = gcc -CFLAGS = -Wall -Wextra -Wno-switch -std=c11 -O2 +CFLAGS = -Wall -Wextra -Wno-switch -std=c11 -O2 -s  LIBS = -lm @@ -9,7 +9,7 @@ SRCS = main.c extended.c  .PHONY: clean  aif2pcm: $(SRCS) -	$(CC) $(CFLAGS) $(SRCS) -o $@ $(LIBS) +	$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)  clean:  	$(RM) aif2pcm aif2pcm.exe diff --git a/tools/bin2c/Makefile b/tools/bin2c/Makefile index eee19af22..bd5f60490 100644 --- a/tools/bin2c/Makefile +++ b/tools/bin2c/Makefile @@ -1,13 +1,13 @@  CC = gcc -CFLAGS = -Wall -Wextra -std=c11 -O2 +CFLAGS = -Wall -Wextra -std=c11 -O2 -s  .PHONY: clean  SRCS = bin2c.c  bin2c: $(SRCS) -	$(CC) $(CFLAGS) $(SRCS) -o $@ +	$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS)  clean:  	$(RM) bin2c bin2c.exe diff --git a/tools/gbagfx/Makefile b/tools/gbagfx/Makefile index de4ea5c42..9a5dee1cc 100644 --- a/tools/gbagfx/Makefile +++ b/tools/gbagfx/Makefile @@ -1,6 +1,6 @@  CC = gcc -CFLAGS = -Wall -Wextra -std=c11 -O2 -DPNG_SKIP_SETJMP_CHECK +CFLAGS = -Wall -Wextra -std=c11 -O2 -s -DPNG_SKIP_SETJMP_CHECK  LIBS = -lpng -lz @@ -9,7 +9,7 @@ SRCS = main.c convert_png.c gfx.c jasc_pal.c lz.c rl.c util.c font.c  .PHONY: clean  gbagfx: $(SRCS) convert_png.h gfx.h global.h jasc_pal.h lz.h rl.h util.h font.h -	$(CC) $(CFLAGS) $(SRCS) -o $@ $(LIBS) +	$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)  clean:  	$(RM) gbagfx gbagfx.exe 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 diff --git a/tools/preproc/Makefile b/tools/preproc/Makefile index 2d577c79f..1f4c58e21 100644 --- a/tools/preproc/Makefile +++ b/tools/preproc/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 := asm_file.cpp c_file.cpp charmap.cpp preproc.cpp string_parser.cpp \  	utf8.cpp @@ -11,7 +11,7 @@ HEADERS := asm_file.h c_file.h char_util.h charmap.h preproc.h string_parser.h \  .PHONY: clean  preproc: $(SRCS) $(HEADERS) -	$(CXX) $(CXXFLAGS) $(SRCS) -o $@ +	$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)  clean:  	$(RM) preproc preproc.exe diff --git a/tools/ramscrgen/Makefile b/tools/ramscrgen/Makefile index e18ae99f2..6c4ca28b6 100644 --- a/tools/ramscrgen/Makefile +++ b/tools/ramscrgen/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 := main.cpp sym_file.cpp elf.cpp @@ -9,7 +9,7 @@ HEADERS := ramscrgen.h sym_file.h elf.h char_util.h  .PHONY: clean  ramscrgen: $(SRCS) $(HEADERS) -	$(CXX) $(CXXFLAGS) $(SRCS) -o $@ +	$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)  clean:  	$(RM) ramscrgen ramscrgen.exe diff --git a/tools/rsfont/Makefile b/tools/rsfont/Makefile index d2a88c46d..544954bfc 100644 --- a/tools/rsfont/Makefile +++ b/tools/rsfont/Makefile @@ -1,6 +1,6 @@  CC = gcc -CFLAGS = -Wall -Wextra -std=c11 -O2 -DPNG_SKIP_SETJMP_CHECK +CFLAGS = -Wall -Wextra -std=c11 -O2 -s -DPNG_SKIP_SETJMP_CHECK  LIBS = -lpng -lz @@ -9,7 +9,7 @@ SRCS = main.c convert_png.c util.c font.c  .PHONY: clean  rsfont: $(SRCS) convert_png.h gfx.h global.h util.h font.h -	$(CC) $(CFLAGS) $(SRCS) -o $@ $(LIBS) +	$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)  clean:  	$(RM) rsfont rsfont.exe diff --git a/tools/scaninc/Makefile b/tools/scaninc/Makefile index 71c4389ef..d33dee6d2 100644 --- a/tools/scaninc/Makefile +++ b/tools/scaninc/Makefile @@ -1,6 +1,6 @@  CXX = g++ -CXXFLAGS = -Wall -std=c++11 -O2 +CXXFLAGS = -Wall -std=c++11 -O2 -s  SRCS = scaninc.cpp c_file.cpp asm_file.cpp @@ -9,7 +9,7 @@ HEADERS := scaninc.h asm_file.h c_file.h  .PHONY: clean  scaninc: $(SRCS) $(HEADERS) -	$(CXX) $(CXXFLAGS) $(SRCS) -o $@ +	$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)  clean:  	$(RM) scaninc scaninc.exe | 
