miller/doc/Makefile.no-autoconfig
2016-02-09 09:31:12 -05:00

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