diff options
author | portix <portix@gmx.net> | 2014-02-24 21:21:20 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2014-02-24 21:21:20 +0100 |
commit | 02fa54e7926b6f8712e21db7483bed7d6696d2fc (patch) | |
tree | 2987cf4cbc34cee07a4208a795a0754db9dd213b | |
parent | 33c8454f1d8c0be290486dc5ddd4190025e48538 (diff) | |
download | dwb-02fa54e7926b6f8712e21db7483bed7d6696d2fc.zip |
Add -O2 to minify build flags
-rw-r--r-- | scripts/lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/Makefile b/scripts/lib/Makefile index c0bfdf24..292194a6 100644 --- a/scripts/lib/Makefile +++ b/scripts/lib/Makefile @@ -1,6 +1,6 @@ # See COPYING for copyright and license details TARGETS := $(patsubst %.js.in, %.js, $(wildcard *.js.in)) -CFLAGS := -std=c99 -Wall -Wextra -pedantic -Werror +CFLAGS := -std=c99 -Wall -Wextra -pedantic -Werror -O2 all: $(TARGETS) |