1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# common targets for linux Makefile's
miniupnpd: $(BASEOBJS) $(LNXOBJS) $(NETFILTEROBJS)
testupnpdescgen: testupnpdescgen.o upnpdescgen.o
testgetifstats: testgetifstats.o getifstats.o
testupnppermissions: testupnppermissions.o upnppermissions.o
testgetifaddr: testgetifaddr.o getifaddr.o getconnstatus.o
testgetroute: testgetroute.o getroute.o upnputils.o
testssdppktgen: testssdppktgen.o
testasyncsendto: testasyncsendto.o asyncsendto.o upnputils.o \
getroute.o
testminissdp: testminissdp.o minissdp.o upnputils.o upnpglobalvars.o \
asyncsendto.o getroute.o
testifacewatcher: testifacewatcher.o ifacewatcher.o
miniupnpdctl: miniupnpdctl.o
dox: $(SRCDIR)/miniupnpd.doxyconf
(cat $< ; echo "INPUT=$(SRCDIR)" ) | $(DOXYGEN) -
# useful for debug : make print-CPPFLAGS
print-%:
@echo "$* = $($*)"
|