Files
infix/src/Makefile
T
Joachim Wiberg 464e0bcb92 bin: factor out copy, erase, and files from klish-plugin-infix
Relocate C code from klish-plugin-infix to stand-alone binaries we can
use also from Bash.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
2024-10-16 06:10:39 +02:00

22 lines
377 B
Makefile

# Host build of critical components, for Coverity Scan mostly
APPS = bin confd execd 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)