From 5b3611265bd97f9263dad6c931a2ae58ed06f42f Mon Sep 17 00:00:00 2001
From: Oliver Schmidt
Date: Tue, 21 Mar 2017 20:54:55 +0100
Subject: [PATCH] Revert to recursively expanded var.
https://github.com/cc65/cc65/commit/4a6bca0b560ae2c1a7cfe3b14f75ee38094b9b76 needed to move to a simply expanded variable but https://github.com/cc65/cc65/commit/cc82cd99923caeb3353288789208eb079c73e720 made that unnecessary again.
---
test/val/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/val/Makefile b/test/val/Makefile
index 95522a930..c7539c81b 100644
--- a/test/val/Makefile
+++ b/test/val/Makefile
@@ -36,7 +36,7 @@ OPTIONS = g O Os Osi Osir Oi Oir Or
.PHONY: all clean
SOURCES := $(wildcard *.c)
-TESTS := $(foreach option,$(OPTIONS),$(SOURCES:%.c=$(WORKDIR)/%.$(option).6502.prg))
+TESTS = $(foreach option,$(OPTIONS),$(SOURCES:%.c=$(WORKDIR)/%.$(option).6502.prg))
TESTS += $(foreach option,$(OPTIONS),$(SOURCES:%.c=$(WORKDIR)/%.$(option).65c02.prg))
all: $(TESTS)