#
# Makefile for the ps2gif
# 

# Set BINDIR to the directory in which program will be installed.
# Set MANDIR to the directory in which manpage will be installed.
# Set MANEXT to the extension for the manpage.

TARGET = ps2gif

BINDIR=/usr/contrib/bin

MANDIR= /usr/contrib/man
MANEXT = 1

install:	$(TARGET).pl
	cp $(TARGET).pl $(BINDIR)/$(TARGET)

install_man:	$(TARGET).man
	cp $(TARGET).man $(MANDIR)/man$(MANEXT)/$(TARGET).$(MANEXT)

