alias install : install-bin install-lib ;
explicit install ;

install install-bin : PdtTestApp
                 : <location>$(TOP)/bin
                   <install-dependencies>on
                   <install-type>EXE
                   ;

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

project :
	;

lib Particle
  : [ glob *.cc : *App.cc ]
    $(TOP)/Utils//Utils_ErrValue
    :
    :
    : <library>$(TOP)/Utils//Utils_ErrValue
  ;

exe PdtTestApp
  : PdtTestApp.cc
    Particle
    $(TOP)/Utils//Utils_ErrValue
    $(TOP)/ErrLogger//ErrLogger
	;
