DEST= /usr/local/bin
MANDIR= /usr/man/manl
PSTEXT_SRC=	pstext.c
PSTEXT_OBJ=	pstext.o

all:	pstext

install: pstext
	install -c -m 755 -o bin -g bin pstext $(DEST)
	install -c -m 755 -o bin -g bin pstext.1 $(MANDIR)/pstext.l
clean:	
	rm -f $(PSTEXT_OBJ) pstext a.out core
