File: Makefile_g%2B%2B_ia64

package info (click to toggle)
trinityrnaseq 2.6.6%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 346,416 kB
  • sloc: perl: 47,542; cpp: 20,209; java: 12,484; python: 2,766; sh: 1,665; makefile: 895; ansic: 90; xml: 83
file content (91 lines) | stat: -rw-r--r-- 2,968 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91

CPLUSPLUS	= g++
CC		= gcc

# Location of Xerces XML parser library:
XERCES_INC	= -ISpines 
# XERCES_LIB	= -L$(LIB) -lxerces-c1_5_1-ia64-gcc411 -lpthread -lrt

SYS_OPT		+= 

SYS_INCS	+=

SYS_LINK	+=

SYS_LIBS	+= 

SYS_WARN	+= -ansi -pedantic

# compiler options controlling C++ dialects:
# for compiling
SYS_LANG	+= -fno-nonansi-builtins

# compiler options controlling C++ dialects:
# for optimization and code-generation

# compiler options to request or suppress warnings:
# warnings not implied by -Wall and -Wextra
SYS_WARN	+= -Wsign-promo -Woverloaded-virtual

# the ctor-dtor-privacy flag is buggy in 4.1.1
ifneq ($(GPP_VERSION),4.1.1)
     SYS_WARN	+= -Wctor-dtor-privacy 
endif

# preprocessor options (for additional warnings)
SYS_WARN	+= -Wendif-labels

# For more stringent checks, add the following options:

# SYS_WARN	+= -Wunused
# overrides -Wno-unused (i.e. standard -Wall)
# warns against unused functions, labels, parameters, variables and values

# SYS_WARN	+= -Wfloat-equal
# warns against floating point (in)equality comparisons

# SYS_WARN	+= -Wwrite-strings
# warns against code that can try to write into a string constant

# SYS_WARN	+= -Wold-style-cast
# warns against old-style (C-style) casts to non-void types in C++ programs

# SYS_WARN	+= -Wformat=2
# equivalent to -Wformat -Wformat-nonliteral -Wformat-security -Wformat-y2k
# -Wformat-nonliteral issues a warning if the format string (to printf, scanf, etc)
#		      is not a literal string and so cannot be checked
# -Wformat-security   issues a warning against using format functions that represent
#		      security problems, such as a nonliteral format string with
#		      no format arguments
# -Wformat-y2k	      issues a warning against strftime format which may yield
#		      a two-digit year

#endif

# For specific object files, suppress warnings from the assembler, all of 
# which are (at the moment) the "Additional NOP may be neccessary to work 
# around Itanium A/B step errata" warnings, which don't apply to Itanium 2 
# processors.  These lines should be removed from this Makefile if they ever 
# provide a fix to remove or suppress that warning specifically.

# Since this file is included before anything other targets are defined, the first
# target in this file is the default target if "make" is called without specifying
# a target.  So, we "forward declare" the target "all", which is defined later in
# Makefile_targets.
all:

assemble/PullApart.o: assemble/PullApart.cc
	@ mkdir -p $(OBJ)/${@D}
	$(CPLUSPLUS) $(CPPC) -Wa,-W -c $(SRC)/$*.cc -o $(OBJ)/$*.o

assembly/display/PsSuperRegion.o: assembly/display/PsSuperRegion.cc
	@ mkdir -p $(OBJ)/${@D}
	$(CPLUSPLUS) $(CPPC) -Wa,-W -c $(SRC)/$*.cc -o $(OBJ)/$*.o

mapped/MarkerHitMgr.o: mapped/MarkerHitMgr.cc
	@ mkdir -p $(OBJ)/${@D}
	$(CPLUSPLUS) $(CPPC) -Wa,-W -c $(SRC)/$*.cc -o $(OBJ)/$*.o

MergeReads.o: MergeReads.cc
	@ mkdir -p $(OBJ)/${@D}
	$(CPLUSPLUS) $(CPPC) -Wa,-W -c $(SRC)/$*.cc -o $(OBJ)/$*.o