Files
infix/src/Makefile
T
Joachim Wiberg be7b434d74 Update list of 'make check' packages
- new: execd, keyack
 - statd has been converted to autotools

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
2024-02-29 08:44:08 +01:00

22 lines
370 B
Makefile

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