The unified diff between revisions [b85a3bbc..] and [dcfa34d1..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'Makefile'

#
# old_revision [b85a3bbccc40f21e02f50101af764be93eeb9538]
# new_revision [dcfa34d1bbf576aab0f0d0ed1b0c64dc6160ee5b]
#
# patch "Makefile"
#  from [479d31a1bbcf4db0ce420abbed6feb38d78d2245]
#    to [a138dfe535ffa07a2fe757f088e1451a3f4aff9a]
#
============================================================
--- Makefile	479d31a1bbcf4db0ce420abbed6feb38d78d2245
+++ Makefile	a138dfe535ffa07a2fe757f088e1451a3f4aff9a
@@ -5,7 +5,8 @@ CSRCS=main.c i2c.c wmp.c timer.c
 SSRCS=crt0.s
 CSRCS=main.c i2c.c wmp.c timer.c
 
-CFLAGS=-march=armv4t -msoft-float -O1
+COPTIM?=-O1
+CFLAGS=-march=armv4t -msoft-float $(COPTIM) -Wall -Werror
 
 LDSCRIPT=lpc2103_flash.ld
 CC=arm-elf-gcc