summaryrefslogtreecommitdiff
path: root/muse/gen
blob: d702ac0f7992d62fd6506a28b5ec6f4eaea1dfdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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
      echo "+entering build directory"
      cd build
   fi

echo "+start top level make..."

#
# HACK:
cp ../all.h .

make