-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile_g++_ia64
More file actions
91 lines (66 loc) · 2.9 KB
/
Makefile_g++_ia64
File metadata and controls
91 lines (66 loc) · 2.9 KB
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