LIBNAME=dse
LD=ld

OBJS=	dsefor.o

all:	$(LIBNAME).so message

$(LIBNAME).so:	$(OBJS)
	$(LD) $(SHLIBLDFLAGS) -o $@ $(OBJS)

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

message:
	@echo "  "
	@echo A list server is available for obtaining update information and 
	@echo  discussing any difficulties with the DSE library. To subscribe to
	@echo  "the list send an e-mail message to "
	@echo  "     boc_list@bank-banque-canada.ca"
	@echo  with the body line 
	@echo  "     subscribe boc_dse Your Name"
	@echo " "
	@echo "                                     Paul Gilbert."
	@echo " "

