]> git.sur5r.net Git - cc65/blob - test/val/Makefile
Added missing -O configuration.
[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 Osr 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 all: $(TESTS)
43
44 $(WORKDIR):
45         $(call MKDIR,$(WORKDIR))
46
47 # Some files have "K & R"-style syntax.  Therefore, some forward
48 # function-declarations don't match the later function definitions.
49 # Those programs fail when fastcall is used; but, the cdecl calling convention
50 # tolerates those conflicts.  Therefore, make their functions default to cdecl.
51 #
52 $(WORKDIR)/cq4.%.prg  \
53 $(WORKDIR)/cq71.%.prg \
54 $(WORKDIR)/cq81.%.prg \
55 $(WORKDIR)/cq84.%.prg: CC65FLAGS += -Wc --all-cdecl
56
57 define PRG_template
58
59 $(WORKDIR)/%.$1.$2.prg: %.c | $(WORKDIR)
60         $(if $(QUIET),echo val/$$*.$1.$2.prg)
61         $(CL65) -t sim$2 $$(CC65FLAGS) -$1 -o $$@ $$< $(NULLERR)
62         $(SIM65) $(SIM65FLAGS) $$@ $(NULLOUT)
63
64 endef # PRG_template
65
66 $(foreach option,$(OPTIONS),$(eval $(call PRG_template,$(option),6502)))
67 $(foreach option,$(OPTIONS),$(eval $(call PRG_template,$(option),65c02)))
68
69 clean:
70         @$(call RMDIR,$(WORKDIR))
71         @$(call DEL,$(SOURCES:.c=.o))