summaryrefslogtreecommitdiffstatshomepage
path: root/contrib/examples/wg-config/Makefile
blob: 4fa264ca7dc488b613b243bba9be46f6c50e41e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
PREFIX ?= /usr
DESTDIR ?=
SBINDIR ?= $(PREFIX)/sbin

all:
	@echo "This is a shell script, so there is nothing to do. Try \"make install\" instead."

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

.PHONY: all install