File: build.sh

package info (click to toggle)
apq 3.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,904 kB
  • ctags: 369
  • sloc: ada: 2,794; ansic: 2,053; sh: 1,277; makefile: 192
file content (36 lines) | stat: -rwxr-xr-x 633 bytes parent folder | download | duplicates (6)
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
31
32
33
34
35
36
#!/usr/bin/env bash
#
# Builder for the KOW Framework project
#
# All it actually does is to call gprbuild several times


##################
# Initialization #
##################

source scripts/buildutil.sh
load_configuration 


echo $KOWLIB_EXTERNALLY_BUILT



if [[ "$enable_debug" = "true" ]]
then
	echo "############################";
	echo "# Building Debug Libraries #";
	echo "############################";
	export DEBUG="true";
	build_libraries;
fi


echo "##############################";
echo "# Building Regular Libraries #";
echo "##############################";
export DEBUG="false";
build_libraries;

gen_filelist;