aboutsummaryrefslogtreecommitdiff
path: root/Makefile.test
blob: 84274655f5845cb47a8a4056d16865eaab832783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# This Makefile is to be included by Makefile of each test

ifndef PROJ_DIR
PROJ_DIR := ../../
endif

def : test

include $(PROJ_DIR)/Makefile.util

IVFLAGS += -DSIMULATION
# The macroassembly header file is somewhat different thing, but I don't know
# what place would be more suitable for it than include/ dir
MACROASM_FLAGS += -I$(PROJ_DIR)/include/ -E

ifdef DEBUG
IVFLAGS += -DDEBUG
DBG&SAVE = tee "$(1)"
else
DBG&SAVE = cat > "$(1)" # putting cat through pipe - what an animal cruelty!
endif

ifdef QUICK_TEST
ifdef VGA_TEST
SKIPPING = 1
endif
endif

ifdef SKIPPING
test :
	@echo Skipping >&2
else
ifdef VGA_TEST
test : VGAdump.ppm VGAdump_expected.ppm
endif
test : report.log
	! grep error $< >&2
ifdef VGA_TEST
	diff VGAdump.ppm VGAdump_expected.ppm
endif
endif

%.mem : %.memv
	$(IV) $(MACROASM_FLAGS) $^ -o $@

%.vvp : %.v $(DEPENDS)
	$(IV) $(IVFLAGS) -s $(TOP) $(filter %.v,$^) -o $@

report.log : $(DEPENDS)
ifdef VGA_TEST
report.log VGAdump.mem : $(PROJ_DIR)/design/font.mem
endif
report.log VGAdump.mem : test.vvp
	$(VVP) $< | $(call DBG&SAVE,report.log)

clean :
	find . -name "*.vvp" -delete
	rm $(call FIND_GENERATED_FILES,.) report.log VGAdump.mem \
		VGAdump.ppm 2>/dev/null || true

.PHONY : test def clean $(TOOLS_TARGETS)

.SECONDARY : $(TOOLS_TARGETS)