summaryrefslogtreecommitdiff
path: root/gen
blob: 6097c1609deb74a085c495df9b2dea5dfd97f4ca (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
#!/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

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

      echo "+calling cmake"
      cmake ../muse
   else
      echo "+entering build directory"
      cd build
   fi

echo "+start top level make..."
make