#
#  Makefile for Essence support programs
#
INSTALLDIR = /usr/local/bin
CFLAGS = -O

PROGS = extract-perl-procs get-include-files print-c-comments \
	ps2txt roff roff-generic \
	roff-man roff-me roff-ms unshar

all: $(PROGS) 

install:	all
	install -c -m 755 $(PROGS) $(INSTALLDIR)

clean:
	-rm -f core *.o print-comments print-c-comments

print-comments: print-comments.o
	cc -o print-comments print-comments.o

print-c-comments: print-c-comments.o
	cc -o print-c-comments print-c-comments.o

extract-perl-procs:
get-include-files:
ps2txt:
roff:
roff-generic:
roff-man:
roff-me:
roff-ms:
