miniupnpd: Makefile: build ssdp tests in both iptables and nft Makefiles

I don't see a reason why they should not be built here; there is nothing
iptables-specific in them.
This commit is contained in:
Ivan Shapovalov 2024-09-03 16:23:21 +02:00 committed by Thomas Bernard
parent 8069d3d57d
commit 49e6746b54
2 changed files with 9 additions and 2 deletions

View File

@ -144,7 +144,6 @@ testportinuse: testportinuse.o portinuse.o getifaddr.o \
testminissdp: testminissdp.o minissdp.o upnputils.o upnpglobalvars.o \
asyncsendto.o getroute.o
miniupnpdctl: miniupnpdctl.o
config.mk config.h: $(SRCDIR)/configure $(SRCDIR)/VERSION

View File

@ -71,7 +71,8 @@ NFT_SCRIPTS = $(addprefix $(SRCDIR)/netfilter_nft/scripts/, \
EXECUTABLES = miniupnpd miniupnpdctl \
testupnpdescgen testgetifstats \
testupnppermissions testgetifaddr \
testgetroute testasyncsendto testportinuse
testgetroute testasyncsendto testportinuse \
testssdppktgen testminissdp
.PHONY: all clean install dox
@ -86,6 +87,8 @@ clean:
$(RM) testupnppermissions.o testgetifaddr.o
$(RM) testgetroute.o testasyncsendto.o
$(RM) testportinuse.o
$(RM) testminissdp.o
$(RM) testssdppktgen.o
$(RM) miniupnpdctl.o
$(RM) -r dox/
@ -123,12 +126,17 @@ testgetifaddr: testgetifaddr.o getifaddr.o
testgetroute: testgetroute.o getroute.o upnputils.o
testssdppktgen: testssdppktgen.o
testasyncsendto: testasyncsendto.o asyncsendto.o upnputils.o \
getroute.o
testportinuse: testportinuse.o portinuse.o getifaddr.o \
nftnlrdr.o nftnlrdr_misc.o
testminissdp: testminissdp.o minissdp.o upnputils.o upnpglobalvars.o \
asyncsendto.o getroute.o
miniupnpdctl: miniupnpdctl.o
config.mk config.h: $(SRCDIR)/configure $(SRCDIR)/VERSION