]> git.sur5r.net Git - cc65/blob - test/val/Makefile
Allow to control test Makefile output via QUIET (like libsrc).
[cc65] / test / val / Makefile
1 # Makefile for the regression tests that return an error code on failure
2
3 ifneq ($(shell echo),)
4   CMD_EXE = 1
5 endif
6
7 ifdef CMD_EXE
8   S = $(subst /,\,/)
9   NULLDEV = nul:
10   MKDIR = mkdir $(subst /,\,$1)
11   RMDIR = -rmdir /s /q $(subst /,\,$1)
12   DEL = del /f $(subst /,\,$1)
13 else
14   S = /
15   NULLDEV = /dev/null
16   MKDIR = mkdir -p $1
17   RMDIR = $(RM) -r $1
18   DEL = $(RM) $1
19 endif
20
21 ifdef QUIET
22   .SILENT:
23   NULLOUT = >$(NULLDEV)
24   NULLERR = 2>$(NULLDEV)
25 endif
26
27 SIM65FLAGS = -x 200000000
28
29 CL65 := $(if $(wildcard ../../bin/cl65*),..$S..$Sbin$Scl65,cl65)
30 SIM65 := $(if $(wildcard ../../bin/sim65*),..$S..$Sbin$Ssim65,sim65)
31
32 WORKDIR = ../../testwrk/val
33
34 OPTIONS = g O Os Osi Osir Oi Oir Or
35
36 .PHONY: all clean
37
38 SOURCES := $(wildcard *.c)
39 TESTS := $(foreach option,$(OPTIONS),$(SOURCES:%.c=$(WORKDIR)/%.$(option).6502.prg))
40 TESTS += $(foreach option,$(OPTIONS),$(SOURCES:%.c=$(WORKDIR)/%.$(option).65c02.prg))
41
42 # FIXME: These tests fail when built with optimizations for the 65c02
43 TESTS := $(filter-out $(WORKDIR)/compare7.O%.65c02.prg,$(TESTS))
44 TESTS := $(filter-out $(WORKDIR)/compare8.O%.65c02.prg,$(TESTS))
45 TESTS := $(filter-out $(WORKDIR)/compare9.O%.65c02.prg,$(TESTS))
46 TESTS := $(filter-out $(WORKDIR)/compare10.O%.65c02.prg,$(TESTS))
47 TESTS := $(filter-out $(WORKDIR)/or1.O%.65c02.prg,$(TESTS))
48
49 all: $(TESTS)
50
51 $(WORKDIR):
52         $(call MKDIR,$(WORKDIR))
53
54 # Some files have "K & R"-style syntax.  Therefore, some forward
55 # function-declarations don't match the later function definitions.
56 # Those programs fail when fastcall is used; but, the cdecl calling convention
57 # tolerates those conflicts.  Therefore, make their functions default to cdecl.
58 #
59 $(WORKDIR)/cq4.%.prg  \
60 $(WORKDIR)/cq71.%.prg \
61 $(WORKDIR)/cq81.%.prg \
62 $(WORKDIR)/cq84.%.prg: CC65FLAGS += -Wc --all-cdecl
63
64 define PRG_template
65
66 $(WORKDIR)/%.$1.$2.prg: %.c | $(WORKDIR)
67         $(if $(QUIET),echo val/$$*.$1.$2.prg)
68         $(CL65) -t sim$2 $$(CC65FLAGS) -$1 -o $$@ $$< $(NULLERR)
69         $(SIM65) $(SIM65FLAGS) $$@ $(NULLOUT)
70
71 endef # PRG_template
72
73 $(foreach option,$(OPTIONS),$(eval $(call PRG_template,$(option),6502)))
74 $(foreach option,$(OPTIONS),$(eval $(call PRG_template,$(option),65c02)))
75
76 clean:
77         @$(call RMDIR,$(WORKDIR))
78         @$(call DEL,$(SOURCES:.c=.o))