LIBNAME=date
LD=ld

OBJS=	char_date.o

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

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

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