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

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

#
# old_revision [d8ed90db2d4284a290224447c40a0d9cef3fbc31]
# new_revision [8760ae9232295422550b79f09e55122390704b3c]
#
# patch "Makefile"
#  from [927f3eec9691fd3957533cc85d93d9e916225d8d]
#    to [de7747e757f0f60e45c426582c5736214e14d050]
#
============================================================
--- Makefile	927f3eec9691fd3957533cc85d93d9e916225d8d
+++ Makefile	de7747e757f0f60e45c426582c5736214e14d050
@@ -3,9 +3,10 @@ SSRCS=crt0.s
 NAME=quad
 
 SSRCS=crt0.s
-CSRCS=main.c i2c.c
+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 -Wextra
 
 LDSCRIPT=lpc2103_flash.ld
 CC=arm-elf-gcc