################################################################################ ## ## Copyright (c) 2007-2011 Illumina, Inc. ## ## This software is covered by the "Illumina Genome Analyzer Software ## License Agreement" and the "Illumina Source Code License Agreement", ## and certain third party copyright/licenses, and any user of this ## source file is bound by the terms therein (see accompanying files ## Illumina_Genome_Analyzer_Software_License_Agreement.pdf and ## Illumina_Source_Code_License_Agreement.pdf and third party ## copyright/license notices). ## ## This file is part of the Consensus Assessment of Sequence And VAriation ## (CASAVA) software package. ## ## file SingleAux1.mk ## ## brief Partial makefile to pick the best alignment for a single dataset. ## ## Calls SingleAux.mk for each $(dataset)_ELAND_SETS ## ## author Roman Petrovski ## ################################################################################ # Iterative generation of the partial temporary export files currentSetList := $($(dataset)_ELAND_SETS) include $(foreach set, $($(dataset)_ELAND_SETS), $(MAKEFILES_DIR)/RnaAux.mk) # make-3.78 is not able to construct the correct list of prerequisites for # intermediate and secondary targets. For this reason the multi-target pattern # must be moved deepen in the makefiles, to a location where all the information # is available for both the prerequisites and the action.