Revision dcd3394e33f0a45377e3435a71b9eb59bb5a3732 authored by Rene Brun on 06 October 2006, 06:48:00 UTC, committed by Rene Brun on 06 October 2006, 06:48:00 UTC
Fix a fatal compilation error introduced in a previous change to TString


git-svn-id: http://root.cern.ch/svn/root/trunk@16457 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 4f573d8
Raw File
makeversion.sh
#! /bin/sh

# Script to update base/inc/RVersion.h.
# Called by main Makefile as soon as build/version_number has been updated.
#
# Author: Fons Rademakers, 28/4/2000

CINT=cint/main/cint_tmp
SCRIPT=build/version.cxx

$CINT $SCRIPT

echo "New version is `cat build/version_number`. Updating dependencies..."

# compile all files that were out-of-date prior to makeversion.sh
make -o base/inc/RVersion.h

# touch all files that don't need recompilation (need to do this 3 times
# to walk through chain of dependencies)
make -s -t; make -s -t; make -s -t

# recompile only base/src/TROOT.cxx
touch base/src/TROOT.cxx
touch rootx/src/rootxx.cxx
make

echo "root-config --version reports: `bin/root-config --prefix=. --version`"
back to top