mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 20:43:02 +02:00
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>
22 lines
371 B
Makefile
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)
|