summaryrefslogtreecommitdiffstatshomepage
path: root/contrib/examples/wg-config/Makefile
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2016-12-30 17:50:19 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2016-12-30 17:50:19 +0100
commit496b71d3202ca731ac187e312f39adaeff16e2b3 (patch)
tree8bba0cd49d065b81850e0dc881ff413bfff9c048 /contrib/examples/wg-config/Makefile
parentqemu: kernel.org mirrors get updates slowly (diff)
downloadwireguard-monolithic-historical-496b71d3202ca731ac187e312f39adaeff16e2b3.tar.xz
wireguard-monolithic-historical-496b71d3202ca731ac187e312f39adaeff16e2b3.zip
wg-config: use ip rules instead of tungate
Diffstat (limited to 'contrib/examples/wg-config/Makefile')
-rw-r--r--contrib/examples/wg-config/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/contrib/examples/wg-config/Makefile b/contrib/examples/wg-config/Makefile
index aa81848..4fa264c 100644
--- a/contrib/examples/wg-config/Makefile
+++ b/contrib/examples/wg-config/Makefile
@@ -2,12 +2,10 @@ PREFIX ?= /usr
DESTDIR ?=
SBINDIR ?= $(PREFIX)/sbin
-SCRIPTS := wg-config tungate
-
all:
- @echo "These are shell scripts, so there is nothing to do. Try \"make install\" instead."
+ @echo "This is a shell script, so there is nothing to do. Try \"make install\" instead."
install:
- @install -v -m0755 -D -t$(DESTDIR)$(SBINDIR) $(SCRIPTS)
+ @install -v -m0755 -D -t$(DESTDIR)$(SBINDIR) wg-config
.PHONY: all install