summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rbutil/mkimxboot/Makefile2
-rw-r--r--rbutil/mkmpioboot/Makefile2
-rw-r--r--rbutil/mktccboot/Makefile2
-rw-r--r--rbutil/tools/Makefile2
-rw-r--r--tools/rbspeex/Makefile2
5 files changed, 5 insertions, 5 deletions
diff --git a/rbutil/mkimxboot/Makefile b/rbutil/mkimxboot/Makefile
index 2293d3939a..942ceb9ca7 100644
--- a/rbutil/mkimxboot/Makefile
+++ b/rbutil/mkimxboot/Makefile
@@ -7,7 +7,7 @@
7 7
8# We use the SB code available in the Rockbox utils/sbtools directory 8# We use the SB code available in the Rockbox utils/sbtools directory
9IMXTOOLS_DIR=../../utils/imxtools/ 9IMXTOOLS_DIR=../../utils/imxtools/
10CFLAGS = -I$(IMXTOOLS_DIR) -Wall 10CFLAGS += -I$(IMXTOOLS_DIR) -Wall
11CFLAGS += -std=c99 11CFLAGS += -std=c99
12 12
13OUTPUT = mkimxboot 13OUTPUT = mkimxboot
diff --git a/rbutil/mkmpioboot/Makefile b/rbutil/mkmpioboot/Makefile
index 8b560d6b29..0a42e39217 100644
--- a/rbutil/mkmpioboot/Makefile
+++ b/rbutil/mkmpioboot/Makefile
@@ -7,7 +7,7 @@
7 7
8TARGET_DIR ?= $(shell pwd)/ 8TARGET_DIR ?= $(shell pwd)/
9# We use the UCL code available in the Rockbox tools/ directory 9# We use the UCL code available in the Rockbox tools/ directory
10CFLAGS = -I../../tools/ucl/include -Wall 10CFLAGS += -I../../tools/ucl/include -Wall
11 11
12OUTPUT = mkmpioboot 12OUTPUT = mkmpioboot
13 13
diff --git a/rbutil/mktccboot/Makefile b/rbutil/mktccboot/Makefile
index 3bca0ba05e..31ad68e643 100644
--- a/rbutil/mktccboot/Makefile
+++ b/rbutil/mktccboot/Makefile
@@ -9,7 +9,7 @@
9 9
10# We use the Telechips code available in the Rockbox tools/ directory 10# We use the Telechips code available in the Rockbox tools/ directory
11TOOLSDIR = ../../tools/ 11TOOLSDIR = ../../tools/
12CFLAGS := -O -g -W -Wall -Wshadow -pedantic -I$(TOOLSDIR) 12CFLAGS += -O -g -W -Wall -Wshadow -pedantic -I$(TOOLSDIR)
13 13
14OUTPUT = mktccboot 14OUTPUT = mktccboot
15 15
diff --git a/rbutil/tools/Makefile b/rbutil/tools/Makefile
index c598d928c6..d10e2528bf 100644
--- a/rbutil/tools/Makefile
+++ b/rbutil/tools/Makefile
@@ -3,7 +3,7 @@ ifndef V
3SILENT = @ 3SILENT = @
4endif 4endif
5 5
6CFLAGS=-Wall -W -D_LARGEFILE64_SOURCE 6CFLAGS += -Wall -W -D_LARGEFILE64_SOURCE
7 7
8ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN) 8ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN)
9CROSS= 9CROSS=
diff --git a/tools/rbspeex/Makefile b/tools/rbspeex/Makefile
index 86f00a1847..9f3f348a69 100644
--- a/tools/rbspeex/Makefile
+++ b/tools/rbspeex/Makefile
@@ -16,7 +16,7 @@ SPEEXSRC = ../../apps/codecs/libspeex
16INCLUDES = -I $(SPEEXSRC) 16INCLUDES = -I $(SPEEXSRC)
17SPEEXOPTS = -DHAVE_CONFIG_H -DROCKBOX_VOICE_ENCODER 17SPEEXOPTS = -DHAVE_CONFIG_H -DROCKBOX_VOICE_ENCODER
18 18
19CFLAGS = $(SPEEXOPTS) $(INCLUDES) -O3 -fomit-frame-pointer -Wno-unused-parameter 19CFLAGS += $(SPEEXOPTS) $(INCLUDES) -O3 -fomit-frame-pointer -Wno-unused-parameter
20 20
21#build standalone win32 executables on cygwin 21#build standalone win32 executables on cygwin
22ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN) 22ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN)