summaryrefslogtreecommitdiff
path: root/muse/gen
blob: 6bffe0b4910facef5633ad8b2a57673259a04f62 (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
29
30
#!/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