mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-22 23:48:30 +00:00
24 lines
764 B
Text
24 lines
764 B
Text
# ================================================================
|
|
# NOTE: This makefile is not intended to be used in a packaging system --
|
|
# rather, Miller uses autconfig for that. This makefile is intended for users
|
|
# who prefer (for whatever reason) to bypass autoconfig. Please also see
|
|
# http://johnkerl.org/miller/doc/build.html#Without_using_autoconfig
|
|
# ================================================================
|
|
|
|
all: html manpage
|
|
|
|
# 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
|
|
manpage: .always
|
|
mkman.rb > mlr.1
|
|
install: manpage
|
|
cp mlr.1 $(INSTALLDIR)/mlr.1
|
|
installhome: manpage
|
|
cp mlr.1 $(INSTALLHOME)/mlr.1
|
|
|
|
.always:
|
|
@true
|