mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-19 16:02:36 +02:00
16 lines
209 B
Makefile
16 lines
209 B
Makefile
|
|
LIB = libtmctl.so
|
|
ifneq ($(strip $(BUILD_TMCTL)),)
|
|
all:
|
|
@cp -f prebuilt/$(LIB) .
|
|
|
|
install: generic_private_lib_install
|
|
else
|
|
all:
|
|
install:
|
|
endif
|
|
clean:
|
|
|
|
dynamic: all install
|
|
|
|
include $(BUILD_DIR)/make.common
|