# SConscript for readout lists # # to customize fill in package dependencies # # ejw, 15-nov-2013 #### #### WARNING!!! #### #### This is was originally used with part of on online #### scons build system. The other ROLS developed have #### since just adopted the DAQ group's Makefile system #### (which is really just copies of the same Makefile #### tweaked for the needs of the specific ROL.) #### #### To make the mcROL more compatible with the other ROLs #### a Makefile was made making this file obsolete (or #### at least severely deprecated.) This is left here for #### now but should probably be removed at some point in #### the future once it is declared obsolete. Import('*') from halld_lib import define_dependencies, buildRol # Don't need hardware-specific libraries for this ROL rolEnv.Replace(SOFTROL='1') # set package dependencies define_dependencies(rolEnv,"rol evio") # override lib prefix for readout lists rolEnv.Replace(LIBPREFIX='') # build the rol buildRol(rolEnv)