jw-pkg/make/std-targets.mk
Jan Lindemann ac54a7bca6
make: Make target "test" depend on target "all"

Every directory should have a test target, and the test target should depend on all so that all files are generated that might be needed for testing. This commit fixes some missing targets, and adds some missing dependencies.

Signed-off-by: Jan Lindemann <jan@janware.com>
2026-07-02 19:52:35 +02:00

11 lines
223 B
Makefile

# This file contains a set of targets which
# 1. are conclusive (i.e. all mandatory targets)
# 2. don't hurt
all:
install:
clean: clean.std-targets
clean.std-targets:
$(RM) -rf *~ .*.swp *.done
distclean: clean
test: all