alias install : install-lib ;
explicit install ;

install install-lib : Utils
                 : <location>$(TOP)/lib
                   <install-dependencies>on
                   <install-type>LIB
                   ;

project :
	;

lib Utils
  : [ glob *.cc : *App.cc ErrValue.cc ]
    $(TOP)/ErrLogger//ErrLogger
  ;

lib Utils_ErrValue : ErrValue.cc ;
