summaryrefslogtreecommitdiff
path: root/rbutil/mkimxboot/Makefile
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2013-02-17 12:47:01 +0100
committerAmaury Pouly <amaury.pouly@gmail.com>2013-02-17 12:47:01 +0100
commitef958abdaed3ccbbf1d07238db4f281d805678d0 (patch)
tree929f7d1eefac0d9d03e541deae1d58ee423ca7a4 /rbutil/mkimxboot/Makefile
parentb05b762ed45c6c8967fce098c598ec1a6ed7a533 (diff)
downloadrockbox-ef958abdaed3ccbbf1d07238db4f281d805678d0.tar.gz
rockbox-ef958abdaed3ccbbf1d07238db4f281d805678d0.zip
mkimxtool: increase performance by compiling with O3
Change-Id: I3d69801488abec4fbc2a84665614936105f60ad2
Diffstat (limited to 'rbutil/mkimxboot/Makefile')
-rw-r--r--rbutil/mkimxboot/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/mkimxboot/Makefile b/rbutil/mkimxboot/Makefile
index 0172ae97f0..a81b960649 100644
--- a/rbutil/mkimxboot/Makefile
+++ b/rbutil/mkimxboot/Makefile
@@ -8,7 +8,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/sbtools/ 9IMXTOOLS_DIR=../../utils/imxtools/sbtools/
10CFLAGS += -I$(IMXTOOLS_DIR) -Wall 10CFLAGS += -I$(IMXTOOLS_DIR) -Wall
11CFLAGS += -std=c99 -g 11CFLAGS += -std=c99 -g -O3
12 12
13OUTPUT = mkimxboot 13OUTPUT = mkimxboot
14 14