lkl: fix default build target to include progs

lklfuse, fs2tar and cptofs were accidentally dropped from the default
build target via a typo in commit 6d360d164e ("lkl: link tests
against common private library").
The install target was still triggering progs-y builds, which is
probably why this took longer to notice than expected.

Fixes: 6d360d164e ("lkl: link tests against common private library")
Signed-off-by: David Disseldorp <ddiss@suse.de>
This commit is contained in:
David Disseldorp
2025-11-12 09:39:19 +01:00
parent e183e402cc
commit 191e6381bc

View File

@@ -53,7 +53,7 @@ export CFLAGS += -I$(OUTPUT)/include -Iinclude -Wall -g -O2 -Wextra \
include Targets
TARGETS := $(progs-y:%=$(OUTPUT)%$(EXESUF))
TARGETS := $(tests-y:%=$(OUTPUT)%$(EXESUF))
TARGETS += $(tests-y:%=$(OUTPUT)%$(EXESUF))
TARGETS += $(libs-y:%=$(OUTPUT)%$(SOSUF))
all: $(TARGETS)