1# -*- sh -*-
2#
3# To create the SGML files, you will need to install the tm-utils
4# package.  See http://www.jedsoft.org/ for more information.
5#
6TMEXPAND = tmexpand
7
8HLP_FILES = arrayfuns.hlp glob.hlp require.hlp structfuns.hlp cmdopt.hlp \
9 readascii.hlp profile.hlp print.hlp process.hlp setfuns.hlp fswalk.hlp \
10 listfuns.hlp
11
12all: help-files
13help-files: $(HLP_FILES)
14.SUFFIXES: .tm .hlp
15.tm.hlp:
16	$(TMEXPAND) -Mslhlp $< $@
17clean:
18	-rm -f *~ *.dvi *.log *.aux *.toc *.bak
19distclean: clean
20	-rm -f *.html *.ps $(HLP_FILES)
21install: $(HLP_FILES)
22	-mv $(HLP_FILES) ../help
23