#=======================================================================
# Makefile for files in ~/public_html/support
# [11-Apr-1995]
#=======================================================================

RM		= /bin/rm -f

SHELL		= /bin/sh

SUBDIRS         = html2latex latex2rtf rtf2LaTeX-1.5 rtf2html rtf2tex \
		  texi2html texi2roff

all:
	$(MAKE) subdirs TARGETS=all


clean mostlyclean:
	-$(RM) *.i
	-$(RM) *.o
	-$(RM) *~
	-$(RM) \#*
	-$(RM) a.out
	-$(RM) core
	$(MAKE) subdirs TARGETS='$@'

clobber distclean realclean:	clean
	$(MAKE) subdirs TARGETS='$@'

install:
	$(MAKE) subdirs TARGETS='$@'

subdirs:
	for f in $(SUBDIRS) ; \
	do \
		echo Making $(TARGETS) in $$f ... ; \
		(cd $$f ; make $(TARGETS) ) ; \
	done

uninstall:
	$(MAKE) subdirs TARGETS='$@'
