Files
infix/src/Makefile
T
Joachim Wiberg 867ea6e92a package/execd: drop unused local package
The execd runner has not been used since Nov, 2024, ca0e54b.  This
weekend it started triggering a warning from Coverity Scan, so let
us drop it for good this time.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
2025-08-04 07:53:46 +02:00

22 lines
371 B
Makefile

# Host build of critical components, for Coverity Scan mostly
APPS = bin confd factory keyack statd
.PHONY: all
all:
@echo "*** all not supported, only check possible ***"
false
.PHONY: dep
dep:
(cd libsrx && make -f check.mk dep)
check: dep $(APPS)
rm -rf staging
$(APPS): libsrx
(cd $@ && make -f check.mk)
.PHONY: libsrx
libsrx:
(cd $@ && make -f check.mk)