2016-12-08 15:13:25 +00:00
|
|
|
PREFIX ?= /usr
|
|
|
|
DESTDIR ?=
|
|
|
|
SBINDIR ?= $(PREFIX)/sbin
|
|
|
|
|
|
|
|
all:
|
2016-12-30 16:50:19 +00:00
|
|
|
@echo "This is a shell script, so there is nothing to do. Try \"make install\" instead."
|
2016-12-08 15:13:25 +00:00
|
|
|
|
|
|
|
install:
|
2016-12-30 16:50:19 +00:00
|
|
|
@install -v -m0755 -D -t$(DESTDIR)$(SBINDIR) wg-config
|
2016-12-08 15:13:25 +00:00
|
|
|
|
|
|
|
.PHONY: all install
|