2017-03-19 17:48:12 +01:00
|
|
|
# Makefile for the regression tests that return an error code on failure
|
2014-11-22 18:28:05 +01:00
|
|
|
|
2014-11-23 12:18:19 +01:00
|
|
|
ifneq ($(shell echo),)
|
2017-03-19 17:48:12 +01:00
|
|
|
CMD_EXE = 1
|
2014-11-23 12:18:19 +01:00
|
|
|
endif
|
|
|
|
|
2015-06-27 00:03:45 +02:00
|
|
|
ifdef CMD_EXE
|
2017-03-19 20:32:23 +01:00
|
|
|
S = $(subst /,\,/)
|
|
|
|
NULLDEV = nul:
|
2017-03-19 17:48:12 +01:00
|
|
|
MKDIR = mkdir $(subst /,\,$1)
|
|
|
|
RMDIR = -rmdir /s /q $(subst /,\,$1)
|
2015-06-27 00:03:45 +02:00
|
|
|
else
|
2017-03-19 20:32:23 +01:00
|
|
|
S = /
|
|
|
|
NULLDEV = /dev/null
|
2017-03-19 17:48:12 +01:00
|
|
|
MKDIR = mkdir -p $1
|
|
|
|
RMDIR = $(RM) -r $1
|
2015-06-27 00:03:45 +02:00
|
|
|
endif
|
|
|
|
|
2017-03-20 11:22:04 +01:00
|
|
|
ifdef QUIET
|
|
|
|
.SILENT:
|
|
|
|
NULLOUT = >$(NULLDEV)
|
|
|
|
NULLERR = 2>$(NULLDEV)
|
|
|
|
endif
|
|
|
|
|
2020-07-13 21:26:31 +02:00
|
|
|
SIM65FLAGS = -x 5000000000
|
2014-11-22 17:02:46 +01:00
|
|
|
|
2020-08-26 20:37:28 +02:00
|
|
|
CC65 := $(if $(wildcard ../../bin/cc65*),..$S..$Sbin$Scc65,cc65)
|
|
|
|
CA65 := $(if $(wildcard ../../bin/ca65*),..$S..$Sbin$Sca65,ca65)
|
|
|
|
LD65 := $(if $(wildcard ../../bin/ld65*),..$S..$Sbin$Sld65,ld65)
|
2017-03-19 20:32:23 +01:00
|
|
|
SIM65 := $(if $(wildcard ../../bin/sim65*),..$S..$Sbin$Ssim65,sim65)
|
2014-11-22 17:02:46 +01:00
|
|
|
|
2017-03-19 17:48:12 +01:00
|
|
|
WORKDIR = ../../testwrk/val
|
|
|
|
|
2017-06-07 10:20:20 -04:00
|
|
|
OPTIONS = g O Os Osi Osir Osr Oi Oir Or
|
2014-11-25 12:56:45 +01:00
|
|
|
|
2014-11-23 12:18:19 +01:00
|
|
|
.PHONY: all clean
|
2014-11-22 17:02:46 +01:00
|
|
|
|
2014-11-26 19:32:54 +01:00
|
|
|
SOURCES := $(wildcard *.c)
|
2017-03-21 20:54:55 +01:00
|
|
|
TESTS = $(foreach option,$(OPTIONS),$(SOURCES:%.c=$(WORKDIR)/%.$(option).6502.prg))
|
2017-03-19 20:07:19 +01:00
|
|
|
TESTS += $(foreach option,$(OPTIONS),$(SOURCES:%.c=$(WORKDIR)/%.$(option).65c02.prg))
|
|
|
|
|
2014-11-22 17:02:46 +01:00
|
|
|
all: $(TESTS)
|
|
|
|
|
2017-03-19 17:48:12 +01:00
|
|
|
$(WORKDIR):
|
|
|
|
$(call MKDIR,$(WORKDIR))
|
|
|
|
|
|
|
|
define PRG_template
|
2014-11-22 17:02:46 +01:00
|
|
|
|
2017-03-19 20:07:19 +01:00
|
|
|
$(WORKDIR)/%.$1.$2.prg: %.c | $(WORKDIR)
|
2017-03-20 11:22:04 +01:00
|
|
|
$(if $(QUIET),echo val/$$*.$1.$2.prg)
|
2020-08-26 20:37:28 +02:00
|
|
|
$(CC65) -t sim$2 $$(CC65FLAGS) -$1 -o $$(@:.prg=.s) $$< $(NULLERR)
|
|
|
|
$(CA65) -t sim$2 -o $$(@:.prg=.o) $$(@:.prg=.s) $(NULLERR)
|
|
|
|
$(LD65) -t sim$2 -o $$@ $$(@:.prg=.o) sim$2.lib $(NULLERR)
|
2017-03-20 11:22:04 +01:00
|
|
|
$(SIM65) $(SIM65FLAGS) $$@ $(NULLOUT)
|
2014-11-22 17:02:46 +01:00
|
|
|
|
2017-03-19 17:48:12 +01:00
|
|
|
endef # PRG_template
|
2014-11-22 17:02:46 +01:00
|
|
|
|
2017-03-19 20:07:19 +01:00
|
|
|
$(foreach option,$(OPTIONS),$(eval $(call PRG_template,$(option),6502)))
|
|
|
|
$(foreach option,$(OPTIONS),$(eval $(call PRG_template,$(option),65c02)))
|
2014-11-22 17:02:46 +01:00
|
|
|
|
|
|
|
clean:
|
2017-03-19 17:48:12 +01:00
|
|
|
@$(call RMDIR,$(WORKDIR))
|