Initial Net-snmp frontend commit

Added apps/snmp with makefiles, autotools, docker adjustment
Minimal snmp_main program
This commit is contained in:
Olof hagsand 2022-04-23 21:12:41 +02:00
parent a00e36caa2
commit d72aa58f90
9 changed files with 591 additions and 11 deletions

View file

@ -36,6 +36,7 @@ VPATH = @srcdir@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
with_restconf = @with_restconf@
enable_netsnmp = @enable_netsnmp@
SHELL = /bin/sh
@ -47,6 +48,11 @@ SUBDIRS += netconf
ifdef with_restconf
SUBDIRS += restconf
endif
ifdef enable_netsnmp
ifeq ($(enable_netsnmp),yes)
SUBDIRS += snmp
endif
endif
.PHONY: all clean depend install $(SUBDIRS)