# Makefile to preformat the manual/help pages. All output stored in the
# obj directory making it easy to clean it out for transportation.
OBJ = ../obj
NINFO = ninfo
HELP = \
	$(OBJ)/abbexp.hlp \
	$(OBJ)/abbstr.hlp \
	$(OBJ)/gotoline.hlp

all:	$(HELP)

$(OBJ)/abbexp.hlp: abbexp.man
	$(NINFO) $? > $@
$(OBJ)/abbstr.hlp: abbstr.man
	$(NINFO) $? > $@
$(OBJ)/gotoline.hlp: gotoline.man
	$(NINFO) $? > $@

