mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 20:43:02 +02:00
Install libyang and sysrepo from source, too old packages in ubuntu-latest. [skip ci] Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
22 lines
357 B
Makefile
22 lines
357 B
Makefile
# Host build of critical components, for Coverity Scan mostly
|
|
APPS = confd statd factory
|
|
|
|
.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)
|