blob: 882c07ec1c2f9523b887ab196654128961cccfb3 (
plain)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
# This file is generated by gyp; do not edit.
TOOLSET := target
TARGET := WebWorkerThreads
DEFS_Debug := \
'-D_LARGEFILE_SOURCE' \
'-D_FILE_OFFSET_BITS=64' \
'-DBUILDING_NODE_EXTENSION' \
'-DDEBUG' \
'-D_DEBUG'
# Flags passed to all source files.
CFLAGS_Debug := \
-fPIC \
-Wall \
-Wextra \
-Wno-unused-parameter \
-pthread \
-m64 \
-g \
-O0
# Flags passed to only C files.
CFLAGS_C_Debug :=
# Flags passed to only C++ files.
CFLAGS_CC_Debug := \
-fno-rtti
INCS_Debug := \
-I/var/lib/openshift/521199af5973ca01b600005b/app-root/data/.node-gyp/0.10.15/src \
-I/var/lib/openshift/521199af5973ca01b600005b/app-root/data/.node-gyp/0.10.15/deps/uv/include \
-I/var/lib/openshift/521199af5973ca01b600005b/app-root/data/.node-gyp/0.10.15/deps/v8/include
DEFS_Release := \
'-D_LARGEFILE_SOURCE' \
'-D_FILE_OFFSET_BITS=64' \
'-DBUILDING_NODE_EXTENSION'
# Flags passed to all source files.
CFLAGS_Release := \
-fPIC \
-Wall \
-Wextra \
-Wno-unused-parameter \
-pthread \
-m64 \
-O2 \
-fno-strict-aliasing \
-fno-tree-vrp \
-fno-tree-sink
# Flags passed to only C files.
CFLAGS_C_Release :=
# Flags passed to only C++ files.
CFLAGS_CC_Release := \
-fno-rtti
INCS_Release := \
-I/var/lib/openshift/521199af5973ca01b600005b/app-root/data/.node-gyp/0.10.15/src \
-I/var/lib/openshift/521199af5973ca01b600005b/app-root/data/.node-gyp/0.10.15/deps/uv/include \
-I/var/lib/openshift/521199af5973ca01b600005b/app-root/data/.node-gyp/0.10.15/deps/v8/include
OBJS := \
$(obj).target/$(TARGET)/src/WebWorkerThreads.o
# Add to the list of files we specially track dependencies for.
all_deps += $(OBJS)
# CFLAGS et al overrides must be target-local.
# See "Target-specific Variable Values" in the GNU Make manual.
$(OBJS): TOOLSET := $(TOOLSET)
$(OBJS): GYP_CFLAGS := $(DEFS_$(BUILDTYPE)) $(INCS_$(BUILDTYPE)) $(CFLAGS_$(BUILDTYPE)) $(CFLAGS_C_$(BUILDTYPE))
$(OBJS): GYP_CXXFLAGS := $(DEFS_$(BUILDTYPE)) $(INCS_$(BUILDTYPE)) $(CFLAGS_$(BUILDTYPE)) $(CFLAGS_CC_$(BUILDTYPE))
# Suffix rules, putting all outputs into $(obj).
$(obj).$(TOOLSET)/$(TARGET)/%.o: $(srcdir)/%.cc FORCE_DO_CMD
@$(call do_cmd,cxx,1)
# Try building from generated source, too.
$(obj).$(TOOLSET)/$(TARGET)/%.o: $(obj).$(TOOLSET)/%.cc FORCE_DO_CMD
@$(call do_cmd,cxx,1)
$(obj).$(TOOLSET)/$(TARGET)/%.o: $(obj)/%.cc FORCE_DO_CMD
@$(call do_cmd,cxx,1)
# End of this set of suffix rules
### Rules for final target.
LDFLAGS_Debug := \
-pthread \
-rdynamic \
-m64
LDFLAGS_Release := \
-pthread \
-rdynamic \
-m64
LIBS :=
$(obj).target/WebWorkerThreads.node: GYP_LDFLAGS := $(LDFLAGS_$(BUILDTYPE))
$(obj).target/WebWorkerThreads.node: LIBS := $(LIBS)
$(obj).target/WebWorkerThreads.node: TOOLSET := $(TOOLSET)
$(obj).target/WebWorkerThreads.node: $(OBJS) FORCE_DO_CMD
$(call do_cmd,solink_module)
all_deps += $(obj).target/WebWorkerThreads.node
# Add target alias
.PHONY: WebWorkerThreads
WebWorkerThreads: $(builddir)/WebWorkerThreads.node
# Copy this to the executable output path.
$(builddir)/WebWorkerThreads.node: TOOLSET := $(TOOLSET)
$(builddir)/WebWorkerThreads.node: $(obj).target/WebWorkerThreads.node FORCE_DO_CMD
$(call do_cmd,copy)
all_deps += $(builddir)/WebWorkerThreads.node
# Short alias for building this executable.
.PHONY: WebWorkerThreads.node
WebWorkerThreads.node: $(obj).target/WebWorkerThreads.node $(builddir)/WebWorkerThreads.node
# Add executable to "all" target.
.PHONY: all
all: $(builddir)/WebWorkerThreads.node
|