mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-19 16:02:36 +02:00
15 lines
238 B
Makefile
15 lines
238 B
Makefile
|
|
EXE = ethctl
|
|
|
|
all:
|
|
@cp -f prebuilt/$(EXE) .
|
|
|
|
install: generic_exe_install
|
|
mkdir -p $(INSTALL_DIR)/sbin
|
|
(cd $(INSTALL_DIR)/sbin; rm -f ethctl; ln -s ../bin/$(EXE) $(EXE))
|
|
|
|
clean:
|
|
|
|
dynamic: all install
|
|
|
|
include $(BUILD_DIR)/make.common
|