#
# File: Img/Makefile
# Authors: Yun Wang,
#          K.R. Sloan
# Last Modified: 17 February 1992
# Purpose: maintain the Img convertors



ARCH = SS1

WFF = /wa/wff

INCLUDE = -I${WFF}/include -I. 

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

CFLAGS = -g ${INCLUDE}

PROGRAMS = 
SCRIPTS = imgRGB2wff ImgDimensions

all: ${PROGRAMS} ${SCRIPTS}

install: all
	cp ${SCRIPTS}  ${DEST}
	(cd ${DEST}; chmod a+rx ${SCRIPTS})
	ls -l ${DEST}
	
clean: 
	rm -f ${PROGRAMS} *.o *.bak *.ckp .em* core *~ \#*
	ls -l

