aboutsummaryrefslogtreecommitdiff
path: root/test/ppu-stm-integration-demo/makefile
blob: 2f4b6f4d4b16644c16a29c4f5ccf4fee11513580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: all clean

TARGETS := test-background-color.h test-image.h test-image.tb.vhd

all: $(TARGETS)

%.h: %.txt ./data2test.awk
	tr -d ':' < $< | ./data2test.awk > $@

test-%.tb.vhd: test-%.txt ./data2vhdltb.awk
	tr -d ':' < $< | ./data2vhdltb.awk > $@

clean:
	$(RM) $(TARGETS)