sx/Makefile

10 lines
205 B
Makefile
Raw Normal View History

2017-12-01 14:14:54 -06:00
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