#
# makefile for making hlp files using qdhelp
#

#.SUFFIXES .qdh .rtf .hlp

QDHELP = qdhelp
HELPCOMP = hc

#
# rule for making an .rtf and .hlp file
#

.qdh.hlp:
	$(QDHELP) $<
	$(HELPCOMP) $*.hpj

#
# make all the hlp files
#

HELPFILES = qdhelp.hlp tplate1.hlp tplate2.hlp tplate3.hlp tplate4.hlp

all: $(HELPFILES)


qdhelp.hlp:  qdhelp.qdh
tplate1.hlp: tplate1.qdh
tplate2.hlp: tplate2.qdh
tplate3.hlp: tplate3.qdh
tplate4.hlp: tplate4.qdh

