From: Oliver Schmidt Date: Tue, 21 Mar 2017 19:54:55 +0000 (+0100) Subject: Revert to recursively expanded var. X-Git-Tag: V2.16~16 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5b3611265bd97f9263dad6c931a2ae58ed06f42f;p=cc65 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. --- 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)