<span id="points">000</span>
var targetScore = 42; //временное значение
$('.target-item').click(function(){
$(this).addClass('active');
$(this).html(targetScore);
var total = 0;
$('.target-item').each(function(){
total += Number($(this).text());
});
$('#points').html(total);
});