initial
[fpgammix.git] / workloads / test-stdio / Makefile
blob91fe042134833f673bae3dd058adf8613f7ec5ef
1 target: test-stdio.txt
3 include ../Makefile
5 CFLAGS=-Wall -O -fomit-frame-pointer
6 test-stdio.elf: test-stdio.o stdio.o fb-io.o
7 $(CC) $^ -Ttext=1000 -o $@
9 test-stdio.o: test-stdio.c Makefile
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 $@
18 stdio.o: ../common/stdio.c Makefile
19 $(CC) $(CFLAGS) -c $< -o $@