
${CONSTITUENT}LIB :: $(${CONSTITUENT}lib)
	@/bin/echo ${CONSTITUENT} : library ok

$(${CONSTITUENT}lib) :: ${OBJS}
	$(lib_echo) library
	$(lib_silent) cd $(bin); \
	  $(ar) $(${CONSTITUENT}lib) $?
	$(lib_silent) $(ranlib) $(${CONSTITUENT}lib)
	$(lib_silent) cat /dev/null >$(${CONSTITUENT}stamp)

#------------------------------------------------------------------
#  Future improvement? to empty the object files after
#  storing in the library
#
##	  for f in $?; do \
##	    rm $${f}; touch $${f}; \
##	  done
#------------------------------------------------------------------

${CONSTITUENT}clean ::
	$(cleanup_echo) ${OBJS}
	$(cleanup_silent) cd $(bin); /bin/rm -f ${OBJS}

