mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-19 07:51:46 +02:00
20 lines
368 B
Makefile
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
|