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