make: remove non-posix features

For better or worse.
This commit is contained in:
Earnestly 2019-02-06 18:54:07 +00:00
parent 956be33728
commit 7073e7df87
1 changed files with 7 additions and 7 deletions

View File

@ -1,9 +1,9 @@
PREFIX ?= /usr/local
bindir ?= /bin
mandir ?= /share/man
PREFIX = /usr/local
bindir = /bin
mandir = /share/man
install: sx sx.1
install -Dm0755 sx $(DESTDIR)$(PREFIX)$(bindir)/sx
install -Dm0644 sx.1 $(DESTDIR)$(PREFIX)$(mandir)/man1/sx.1
.PHONY: install
mkdir -p $(DESTDIR)$(PREFIX)$(bindir)
mkdir -p $(DESTDIR)$(PREFIX)$(mandir)/man1
cp -f sx $(DESTDIR)$(PREFIX)$(bindir)
cp -f sx.1 $(DESTDIR)$(PREFIX)$(mandir)/man1