#=======================================================================
# Makefile for text2pdf
# [15-Mar-1996]
#=======================================================================

RM		= /bin/rm -f
SHELL		= /bin/sh

all:	text2pdf
	
clean mostlyclean:
	-$(RM) *.i
	-$(RM) *.o
	-$(RM) *~
	-$(RM) \#*
	-$(RM) a.out
	-$(RM) core
	-$(RM) text2pdf

clobber distclean:	clean

maintainer-clean:	distclean
	@echo "This command is intended for maintainers to use;"
	@echo "it deletes files that may require special tools to rebuild."

text2pdf:	text2pdf.o
	$(CC) $(CFLAGS) -o $@ $<
