initial
[fpgammix.git] / workloads / audio / Makefile
blob7cb949472a2e861a4c841e8f685f2f2f81366833
1 target: test-audio.txt
3 include ../Makefile
5 CFLAGS=-Wall -O -fomit-frame-pointer -I../common
6 test-audio.elf: test-audio.o stdio.o fb-io.o interrupts.o
7 $(CC) $^ -Ttext=1000 -o $@
9 stdio.o: ../common/stdio.c
10 $(CC) $(CFLAGS) -c $< -o $@
12 interrupts.o: ../common/interrupts.S Makefile
13 $(CC) -c $< -o $@
15 fb-io.o: ../common/fb-io.c Makefile
16 $(CC) $(CFLAGS) -c $< -o $@