mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 04:33:00 +02:00
22 lines
373 B
Makefile
22 lines
373 B
Makefile
# Host build of critical components, for Coverity Scan mostly
|
|
APPS = 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)
|