YANG keywords "action" and "belongs-to" implemented by syntactically by parser (but not proper semantics).

This commit is contained in:
Olof hagsand 2018-11-04 18:36:55 +01:00
parent 270bf78e1f
commit 366cf041bd
8 changed files with 41 additions and 9 deletions

View file

@ -68,12 +68,12 @@ depend:
install:
for i in $(SUBDIRS) doc; \
do (cd $$i; $(MAKE) $(MFLAGS) $@)||exit 1; done; \
echo "Install for compilation by: make install-include"
@echo "Install for compilation by: make install-include"
install-include:
for i in $(SUBDIRS) doc; \
do (cd $$i && $(MAKE) $(MFLAGS) $@)||exit 1; done; \
echo "To install example app: cd example; make; make install"
@echo "To install example app: cd example; make; make install"
uninstall:
for i in $(SUBDIRS) doc example docker; \