Fixed make cov lfs.t.gcda -> lfs.t.a.gcda

This was missed when changing the behavior of test/bench suffixes
earlier. Easy fix.
This commit is contained in:
Christopher Haster
2024-05-13 13:32:32 -05:00
parent 1d88fa9864
commit 827dddf62b
+1 -1
View File
@@ -34,7 +34,7 @@ OBJ := $(SRC:%.c=$(BUILDDIR)/%.o)
DEP := $(SRC:%.c=$(BUILDDIR)/%.d)
ASM := $(SRC:%.c=$(BUILDDIR)/%.s)
CI := $(SRC:%.c=$(BUILDDIR)/%.ci)
GCDA := $(SRC:%.c=$(BUILDDIR)/%.t.gcda)
GCDA := $(SRC:%.c=$(BUILDDIR)/%.t.a.gcda)
TESTS ?= $(wildcard tests/*.toml)
TEST_SRC ?= $(SRC) \