#
#	Makefile for iff2sun
#
#	Steve -Raz- Berry
#	4/25/89
#
CFLAGS = -O
#

OBJS = iff2sun.o convert.o

all:	iff2sun convert

iff2sun:	$(OBJS)
	cc $(CFLAGS) -o $@ $@.c

clean:
	rm $(OBJS)

shar:	$(OBJS)
	shar -f iff2sun.$@ iff2sun.doc Makefile iff2sun.c convert.c hamtosun
