TESTCASES: More graphic workload
[yari.git] / testcases / graphics / Makefile
blobbbc9cf873a8fa7092e8f1b68494ad14e96f6c3e9
1 CFLAGS=-G0 -O
2 LDFLAGS=-Tyari.ld
3 LD=mips-elf-gcc
5 SIM=../../yarisim/sim
7 hilbert-host: hilbert.c
8 cc -g hilbert.c -o hilbert-host
10 test-font1.mips: test-font1.c font-fixed-6x13.c
11 mips-elf-gcc $(LDFLAGS) $(CFLAGS) $^ -o $@
13 all: hilbert.txt
15 %.txt: %.mips $(SIM)
16 $(SIM) --tiny $< > $@
19 %.mips: %.c
20 mips-elf-gcc $(LDFLAGS) $(CFLAGS) $< -o $@