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

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

#
# old_revision [7ac10cd34167baa43683a09e9e9e6778e691171d]
# new_revision [d8ed90db2d4284a290224447c40a0d9cef3fbc31]
#
# patch "Makefile"
#  from [50a03fdf9f72cd0c2176b68271ca76d1e1df12eb]
#    to [927f3eec9691fd3957533cc85d93d9e916225d8d]
#
============================================================
--- Makefile	50a03fdf9f72cd0c2176b68271ca76d1e1df12eb
+++ Makefile	927f3eec9691fd3957533cc85d93d9e916225d8d
@@ -2,15 +2,16 @@ NAME=quad
 
 NAME=quad
 
-OBJS=crt0.o main.o
+SSRCS=crt0.s
+CSRCS=main.c i2c.c
 
-CFLAGS=-march=armv4t -msoft-float
+CFLAGS=-march=armv4t -msoft-float -O1
 
 LDSCRIPT=lpc2103_flash.ld
 CC=arm-elf-gcc
 OBJCOPY=arm-elf-objcopy
 
-CLEANOBJS=$(OBJS) $(NAME).hex $(NAME).elf $(NAME).bin $(NAME).map
+CLEANOBJS=$(OBJS) $(NAME).hex $(NAME).elf $(NAME).bin $(NAME).map .depend
 
 all: $(NAME).bin
 
@@ -18,6 +19,9 @@ all: $(NAME).bin
 # In theory, nothing below here needs touching for as long as all of the
 # sources are in a single directory.
 
+COBJS=$(CSRCS:.c=.o)
+SOBJS=$(SSRCS:.s=.o)
+OBJS=$(SOBJS) $(COBJS)
 
 .SUFFIXES: .elf .hex .bin
 
@@ -36,3 +40,7 @@ clean:
 clean:
 	rm -rf $(CLEANOBJS)
 
+depend:
+	$(CC) -MM $(CFLAGS) -nostdlib -nostartfiles $(CSRCS) >.depend
+
+.sinclude ".depend"