021a64558d
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
10 lines
241 B
Makefile
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
|