forked from trinityrnaseq/trinityrnaseq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
74 lines (52 loc) · 1.92 KB
/
Makefile
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
###################################################################
#
# The default compiler is GNU gcc/g++.
# Run
# make TRINITY_COMPILER=intel
# to build Inchworm and Chrysalis with the Intel compiler.
#
ifeq ($(TRINITY_COMPILER),intel)
INCHWORM_CONFIGURE_FLAGS = CXX=icpc CXXFLAGS="-fast"
CHRYSALIS_MAKE_FLAGS = COMPILER=icpc
else
override TRINITY_COMPILER=gnu
endif
all: inchworm_target chrysalis_target trinity_essentials
sh ./util/support_scripts/trinity_install_tests.sh
install:
util/support_scripts/trinity_installer.py
inchworm_target:
@echo Using $(TRINITY_COMPILER) compiler for Inchworm and Chrysalis
cd Inchworm && (test -e configure || autoreconf) \
&& sh ./configure --prefix=`pwd` $(INCHWORM_CONFIGURE_FLAGS) && $(MAKE) install
chrysalis_target:
cd Chrysalis && $(MAKE) UNSUPPORTED=yes $(CHRYSALIS_MAKE_FLAGS)
trinity_essentials:
cd trinity-plugins && $(MAKE) trinity_essentials
plugins:
cd trinity-plugins && $(MAKE) plugins
sh ./util/support_scripts/plugin_install_tests.sh
test:
@echo
@echo "Checking for Trinity essentials (built from 'make all'):"
sh ./util/support_scripts/trinity_install_tests.sh
@echo
@echo "Checking for plugins (built from 'make plugins'):"
sh ./util/support_scripts/plugin_install_tests.sh
@echo "Run 'make test_trinity' if you want to test Trinity execution on a small data set"
clean:
cd Inchworm && make clean
cd Chrysalis && $(MAKE) clean UNSUPPORTED=yes
cd trinity-plugins && $(MAKE) clean
cd sample_data/ && make clean
test_trinity:
cd sample_data/test_Trinity_Assembly && make test
# note 'test_all': ** this is for a more advanced installation including devel features **
test_all:
cd sample_data/ && make test_all
./__pull_trinity_ext_sample_data.sh
cd trinity_ext_sample_data/ && make test
test_clean:
cd sample_data/ && make clean
cd trinity_ext_sample_data/ && make clean
###################################################################