File: Makefile_icpc

package info (click to toggle)
trinityrnaseq 2.2.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 212,452 kB
  • ctags: 5,067
  • sloc: perl: 45,552; cpp: 19,678; java: 11,865; sh: 1,485; makefile: 613; ansic: 427; python: 313; xml: 83
file content (68 lines) | stat: -rw-r--r-- 1,251 bytes parent folder | download | duplicates (2)
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
# disable parallel make; problem with linking
.NOTPARALLEL:

CPLUSPLUS	= icpc
CC		= icc
AR      = xiar # needed for ipo (e.g., if SYS_OPT=-fast)
ARFLAGS = qc   # xiar doesn't recognize "-qc"

#  Makefile macros.  See `Makefile' for explanations.

# Additional defines:
SYS_DEFS	+= -imacros system/BigFileDefines.h #-pthread
# From user-defined options in Makefile:

ifeq ($(QUIET),yes)
  SYS_WARN	+= -w
else
  SYS_WARN	+= -Wall -Wno-unused -Wno-deprecated
endif

ifeq ($(DEBUG),yes)
  SYS_DEBUG	+= -g
endif

ifeq ($(FAST),yes)
  # Force minor optimizations:
  OPTIM		= -O 
endif

ifeq ($(OPTIM),none)
  SYS_OPT	+=
else
  ifeq ($(OPTIM),)
    SYS_OPT	+= -fast
  else
    SYS_OPT	+= $(OPTIM)
  endif
endif

ifeq ($(PROFILE),yes)
  SYS_DEBUG	+= #-pg TODO: use Intel equivalent
endif

ifeq ($(FORCE_DEBUG),yes)
  SYS_DEFS	+= -DFORCE_DEBUG
endif

ifeq ($(TRACK_MEMORY),yes)
  SYS_DEBUG     += -DTRACK_MEMORY
  SYS_MEMTRACK  += -include system/MemTracker.h
endif

ifeq ($(ASSERT),FAST)
  SYS_DEFS	+= -DFAST_ASSERT
endif

ifeq ($(OPEN_MP),yes)
  OMP_FLAGS	= -openmp
  OMP_LINK	= -openmp
endif

ifeq ($(GCOV),yes)
  SYS_DEBUG	+= #-fprofile-arcs -ftest-coverage
endif

SYS_INCS	+= -I.

SYS_LINK	+= $(SYS_OPT) # in case it's needed for ipo (e.g., with "-fast")