From: Joshua Wise Date: Sun, 18 Jan 2009 09:19:11 +0000 (-0500) Subject: tests/Makefile: Add CFLAGS for LOL2FAST2FURIOUS. X-Git-Url: http://git.joshuawise.com/firearm.git/commitdiff_plain/f05621b796e3d8f9036e2e5bbda5b7af1624b2e2?hp=95704fd3cfedb792839f6168c777d77ca1da3ceb tests/Makefile: Add CFLAGS for LOL2FAST2FURIOUS. --- diff --git a/tests/Makefile b/tests/Makefile index 62be4ba..0fc42d1 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,10 +1,10 @@ all: costas.hex %.o: %.c - arm-elf-gcc -c -o $@ $< + arm-elf-gcc $(CFLAGS) -c -o $@ $< %.o: %.S - arm-elf-gcc -c -o $@ $< + arm-elf-gcc $(CFLAGS) -c -o $@ $< %.elf: %.o anulib.o script.lds arm-elf-ld -o $@ -T script.lds anulib.o $<