sx/Makefile
Earnestly 021a64558d make: use more GNU directory variables
A set of conventions[0] that I think are quite nice outside of
autotools.

0. https://www.gnu.org/prep/standards/html_node/Directory-Variables.html
2020-05-21 21:59:02 +01:00

10 lines
241 B
Makefile

PREFIX = /usr/local
bindir = $(PREFIX)/bin
datarootdir = $(PREFIX)/share
mandir = $(datarootdir)/man
install: sx sx.1
mkdir -p $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man1
cp -f sx $(DESTDIR)$(bindir)
cp -f sx.1 $(DESTDIR)$(mandir)/man1