1## To Build
2```
3To build this package, do the following steps:
4
5    1. ./bootstrap.sh
6    2. ./configure ${CONFIGURE_FLAGS} --prefix=/usr
7    3. make
8
9To clean the repository run `./bootstrap.sh clean`.
10```
11
12```
13For local build, pass --prefix=/usr option to the configure script
14to let the Makefile use /usr/share value over /usr/local/share for ${datadir}
15variable. The error yaml files and elog parser are stored in /usr/share
16location in the SDK.
17```
18
19```
20For CI build, ${datadir} is expanded to /usr/local/share to which the
21dependent files and parser are exported, so don't add the prefix option.
22```
23
24```
25For recipe build, ${datadir} is expanded to /usr/share to which the
26dependent files and parser are exported, so don't add the prefix option.
27```
28