Skip to content
Snippets Groups Projects
  • Axel Naumann's avatar
    d47847d1
    Remove entry point for configure/make. · d47847d1
    Axel Naumann authored
    This build system has served us well for about twenty years, but
    time has come to part. ROOT can be built with CMake (the de-facto
    standard for many software packages out there) since several years
    now. It's not a beauty, but it works. And we have better things to
    do than maintain two independent build systems. Thus:
    
      So long, configure, and thanks for all the bash!
    d47847d1
    History
    Remove entry point for configure/make.
    Axel Naumann authored
    This build system has served us well for about twenty years, but
    time has come to part. ROOT can be built with CMake (the de-facto
    standard for many software packages out there) since several years
    now. It's not a beauty, but it works. And we have better things to
    do than maintain two independent build systems. Thus:
    
      So long, configure, and thanks for all the bash!
configure 182 B
#!/bin/bash
#

echo ""
echo "  ROOT is built with CMake, see https://root.cern/building-root"
echo "  Please run"
echo "      mkdir obj; cd obj; cmake ..; make -j 4"
echo ""

exit 1