# Original version:	Copyright Guy Nason 1993 (R version: Arne Kovac 1997)
# Thanks to Martin Maechler for helpful comments for this version.
#
LIBNAME=WaveThresh
LD=ld

OBJS=	ImageDecomposeStep.o StoIRS.o wavedecomp.o \
		conbar.o waverecons.o StoIDS.o convolve.o

WaveThresh.so: $(OBJS)
	@$(LD) $(SHLIBLDFLAGS) -o $(LIBNAME).so $(OBJS)
	@mv $(LIBNAME).so ../../../../lib

clean:
	@rm -f *.o *.so

realclean:
	@rm -f Makefile *.o *.so
