#
# File: Makefile
# Author: K.R. Sloan
# Last Modified: 19 September 1991
# Purpose: maintain the Postscript convertors

ARCH = SS1

PROGRAMS = wff2ps

INCLUDE = ../../include

DEST = ../../${ARCH}bin

#  Path on this system to the wff directory
WFF = ../..

CFLAGS = -O -I${INCLUDE}

all: ${PROGRAMS}

wff2ps: wff2ps.c
	cc ${CFLAGS} -o wff2ps wff2ps.c ${WFF}/${ARCH}bin/wff.o -lc -lm
	
install: all
	cp ${PROGRAMS} ${DEST}

clean: 
	rm -f ${PROGRAMS} *.o *.bak *.ckp core *~ #*


