mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-23 16:08:43 +00:00
17 lines
342 B
Text
17 lines
342 B
Text
all: html man
|
|
|
|
# Respective MANPATH entries would include /usr/local/share/man or $HOME/man
|
|
INSTALLDIR=/usr/local/share/man/man1
|
|
INSTALLHOME=$(HOME)/man/man1
|
|
|
|
html: .always
|
|
poki
|
|
man: .always
|
|
mkman.rb > mlr.1.premade
|
|
install: man
|
|
cp mlr.1.premade $(INSTALLDIR)/mlr.1
|
|
installhome: man
|
|
cp mlr.1.premade $(INSTALLHOME)/mlr.1
|
|
|
|
.always:
|
|
@true
|