	Linking in the shared libraries tightens the code nicely--
75k iconx; 33k itran; 3k icont.

To use shared libraries, add

	#define Icon Alloc

to define.h.  Then, after

	make Icon

do

	SHAREDLIB = /lib/crt0s.o /lib/shlib.ifile
	LD = /bin/ld

	cd src
		cd icont
		$(LD) icont.o $(SHAREDLIB) -o icont

		cd iconx
		$(LD) *.o $(SHAREDLIB) -lm -o iconx
	
	sh Copybin

Note that the definition of IconAlloc only should be added when using
shared libraries.
