LIBNAME=rational
LD=ld

OBJS=   rational.o

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

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