The unified diff between revisions [b85a3bbc..] and [cc8258a6..] 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 [cc8258a6c3643514892e84cf24fed008bc6f9660]
#
# patch "Makefile"
#  from [479d31a1bbcf4db0ce420abbed6feb38d78d2245]
#    to [b5d08d5d0ac834ea39ee009f56ef0e3780848f88]
#
============================================================
--- Makefile	479d31a1bbcf4db0ce420abbed6feb38d78d2245
+++ Makefile	b5d08d5d0ac834ea39ee009f56ef0e3780848f88
@@ -3,9 +3,10 @@ SSRCS=crt0.s
 NAME=quad
 
 SSRCS=crt0.s
-CSRCS=main.c i2c.c wmp.c timer.c
+CSRCS=main.c i2c.c wmp.c timer.c interrupt.c uart.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