aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/contrib/examples/wg-config/Makefile
blob: aa8184875942e5750c3819e3c4cd44c4c0b76625 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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."

install:
	@install -v -m0755 -D -t$(DESTDIR)$(SBINDIR) $(SCRIPTS)

.PHONY: all install