miller/doc/Makefile.no-autoconfig
2015-11-29 20:23:49 -05:00

24 lines
772 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 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