File: INSTALL

package info (click to toggle)
discosnp 1%3A2.6.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,652 kB
  • sloc: python: 5,893; sh: 2,966; cpp: 2,692; makefile: 12
file content (30 lines) | stat: -rw-r--r-- 521 bytes parent folder | download | duplicates (4)
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
# CMake is required to compile software (http://www.cmake.org/cmake/resources/software.html)
#
# You can install software by executing this file: sh INSTALL
#

# Prepare GATB sub-module
git submodule init
git submodule update

# Prepare directories:
rm -rf build
mkdir  build

# Go in the 'build' directory
cd build

# Prepare the makefile
cmake ..

# Run the newly created makefile:
make -j8

# Go back at the installation root directory
cd ..

# run tests
echo "Running simple test..."
cd test
. ./simple_test.sh
cd ..