-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigure
More file actions
executable file
·29 lines (21 loc) · 781 Bytes
/
Copy pathconfigure
File metadata and controls
executable file
·29 lines (21 loc) · 781 Bytes
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
#!/bin/bash
# This will get replaced by a GNU autotools autoconf input file named
# configure.ac. For now quickBuild is 10 times faster so the lost in
# development time is not worth the gain in standardization and user
# acceptance which comes from using GNU autotools. Oh yes, CMake is a
# bloat monster. quickstream will not use CMake.
set -ex
# Go to the directory where this script is.
cd $(dirname ${BASH_SOURCE[0]})
# File config.make is not checked in and it may have user
# configuration information in it, so we do not want to
# check it in.
if [ ! -e config.make ] ; then
echo -e "# This is a generated file\n" > config.make
cat config.make.example >> config.make
fi
if [ ! -e quickbuild.make ] ; then
./bootstrap
fi
set +x
echo -e "\n$0 Success"