Files
infix/src/Makefile
T
Joachim Wiberg 2caf729ee8 github: enable building local src in host mode for analysis
Install libyang and sysrepo from source, too old packages in ubuntu-latest.

[skip ci]

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
2023-11-17 18:04:18 +01:00

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)