asuswrt-merlin.ng/release/src-rt-5.02axhnd.675x/router-sysdep.dsl-ax82u/libupnp/Makefile
2021-12-31 02:13:45 +01:00

20 lines
368 B
Makefile

include $(TOP)/common.mak
ifneq ($(CMWIFI),)
UPNPLIB_NAME = libwlupnp.so
else
UPNPLIB_NAME = libupnp.so
endif
all:
echo use prebuilt
cp -f ./prebuilt/$(UPNPLIB_NAME) .
install: all
install -d $(INSTALLDIR)/usr/lib
install -m 755 $(UPNPLIB_NAME) $(INSTALLDIR)/usr/lib
$(STRIP) $(INSTALLDIR)/usr/lib/$(UPNPLIB_NAME)
clean:
rm -f $(UPNPLIB_NAME)
.PHONY: clean