--- nono/host/Makefile.in 2026/04/29 17:05:26 1.1.1.8 +++ nono/host/Makefile.in 2026/04/29 17:05:39 1.1.1.10 @@ -15,9 +15,11 @@ TARGETS= libnnhost.a HOSTNET_AFPACKET=@HOSTNET_AFPACKET@ HOSTNET_TAP=@HOSTNET_TAP@ HOSTNET_BPF=@HOSTNET_BPF@ +HOSTNET_SLIRP=@HOSTNET_SLIRP@ CXXSRCS= \ comdriver.cpp \ + comdriver_cons.cpp \ comdriver_none.cpp \ comdriver_stdio.cpp \ comdriver_tcp.cpp \ @@ -41,6 +43,9 @@ CXXSRCS+= netdriver_tap.cpp .if "${HOSTNET_BPF}" == "yes" CXXSRCS+= netdriver_bpf.cpp .endif +.if "${HOSTNET_SLIRP}" == "yes" +CXXSRCS+= netdriver_slirp.cpp +.endif OBJS= ${CXXSRCS:.cpp=.o}