This repository has been archived on 2024-01-23. You can view files and clone it, but cannot push or open issues or pull requests.
2016-12-08 16:13:25 +01:00
|
|
|
PREFIX ?= /usr
|
|
|
|
DESTDIR ?=
|
|
|
|
SBINDIR ?= $(PREFIX)/sbin
|
|
|
|
|
|
|
|
all:
|
2016-12-30 17:50:19 +01:00
|
|
|
@echo "This is a shell script, so there is nothing to do. Try \"make install\" instead."
|
2016-12-08 16:13:25 +01:00
|
|
|
|
|
|
|
install:
|
2016-12-30 17:50:19 +01:00
|
|
|
@install -v -m0755 -D -t$(DESTDIR)$(SBINDIR) wg-config
|
2016-12-08 16:13:25 +01:00
|
|
|
|
|
|
|
.PHONY: all install
|