1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

Revert to recursively expanded var.

4a6bca0b56 needed to move to a simply expanded variable but cc82cd9992 made that unnecessary again.
This commit is contained in:
Oliver Schmidt 2017-03-21 20:54:55 +01:00
parent 669113b595
commit 5b3611265b

View File

@ -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)