#!/bin/sh # # out of source build of MusE # all generated files go into subdirectory "build" # if test ! -d build; then echo "+creating build directory" mkdir build echo "+entering build directory" cd build echo "+calling cmake" cmake .. else cd build fi # ahem... hack cp ../all.h . echo "+start top level make..." # # HACK: cp ../all.h . make