source: pacpustutorials/template/project_template/build/build_linux.sh@ 1

Last change on this file since 1 was 1, checked in by DHERBOMEZ Gérald, 9 years ago

add first tutorials exercises

  • Property svn:executable set to *
File size: 576 bytes
Line 
1#!/bin/bash
2
3set -e
4
5if [ -z $PACPUS_ROOT ]; then
6 echo PACPUS_ROOT environment variable does not exist, please set it the folder in which you have installed pacpusframework.
7else
8
9 BUILD_DIR=./build${PACPUS_ROOT////_}
10 echo Your files will be built in: $BUILD_DIR
11
12 if [ -z $1 ]; then J="1"; else J="$1";
13 fi
14
15 if [ "$TARGET_PREFIX" == "arm-poky-linux-gnueabi-" ]; then
16 echo The environment is configured for poky_arm
17 exit 1
18 fi
19
20 if [ -d "$BUILD_DIR" ]; then
21 rm -rf $BUILD_DIR
22 fi
23
24 mkdir $BUILD_DIR
25 cd $BUILD_DIR
26
27 cmake ../..
28
29 make -j$J
30 sudo make install
31
32fi
33
Note: See TracBrowser for help on using the repository browser.