mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-19 16:02:36 +02:00
21 lines
346 B
Makefile
21 lines
346 B
Makefile
|
|
include $(TOP)/common.mak
|
|
UPNPLIB_NAME = libupnp.so
|
|
|
|
OBJFILES = ${SRCFILES:.c=.o}
|
|
|
|
all:
|
|
echo use prebuilt
|
|
cp -f ./prebuilt/$(UPNPLIB_NAME) .
|
|
|
|
install:
|
|
install -d $(INSTALLDIR)/usr/lib
|
|
install -m 755 $(UPNPLIB_NAME) $(INSTALLDIR)/usr/lib
|
|
$(STRIP) $(INSTALLDIR)/usr/lib/$(UPNPLIB_NAME)
|
|
|
|
dynamic:
|
|
|
|
clean:
|
|
rm -f $(UPNPLIB_NAME) $(OBJFILES)
|
|
|
|
|