JezK
Edit File: shell.target.x64.mk
# This file is generated by gyp; do not edit. TOOLSET := target TARGET := shell DEFS_Debug := \ '-DENABLE_DEBUGGER_SUPPORT' \ '-DV8_TARGET_ARCH_X64' \ '-DDEBUG' \ '-DENABLE_DISASSEMBLER' \ '-DV8_ENABLE_CHECKS' \ '-DOBJECT_PRINT' \ '-DVERIFY_HEAP' \ '-DENABLE_EXTRA_CHECKS' # Flags passed to all source files. CFLAGS_Debug := \ -Wall \ \ -W \ -Wno-unused-parameter \ -Wnon-virtual-dtor \ -pthread \ -fno-rtti \ -fno-exceptions \ -pedantic \ -Wno-unused-local-typedefs \ -ansi \ -fPIC \ -g \ -O0 \ -Wall \ -W \ -Wno-unused-parameter \ -Wnon-virtual-dtor \ -Woverloaded-virtual \ -Wno-unused-local-typedefs # Flags passed to only C files. CFLAGS_C_Debug := # Flags passed to only C++ files. CFLAGS_CC_Debug := INCS_Debug := \ -I$(srcdir)/include DEFS_Release := \ '-DENABLE_DEBUGGER_SUPPORT' \ '-DV8_TARGET_ARCH_X64' # Flags passed to all source files. CFLAGS_Release := \ -Wall \ \ -W \ -Wno-unused-parameter \ -Wnon-virtual-dtor \ -pthread \ -fno-rtti \ -fno-exceptions \ -pedantic \ -Wno-unused-local-typedefs \ -ansi \ -fPIC \ -fdata-sections \ -ffunction-sections \ -O3 # Flags passed to only C files. CFLAGS_C_Release := # Flags passed to only C++ files. CFLAGS_CC_Release := INCS_Release := \ -I$(srcdir)/include OBJS := \ $(obj).target/$(TARGET)/samples/shell.o # Add to the list of files we specially track dependencies for. all_deps += $(OBJS) # Make sure our dependencies are built before any of us. $(OBJS): | $(obj).target/tools/gyp/v8.stamp $(obj).target/tools/gyp/libv8_base.a $(obj).target/tools/gyp/libv8_snapshot.a $(obj).target/tools/gyp/js2c.stamp # 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 LDFLAGS_Release := \ -pthread LIBS := $(builddir)/shell: GYP_LDFLAGS := $(LDFLAGS_$(BUILDTYPE)) $(builddir)/shell: LIBS := $(LIBS) $(builddir)/shell: LD_INPUTS := $(OBJS) $(obj).target/tools/gyp/libv8_base.a $(obj).target/tools/gyp/libv8_snapshot.a $(builddir)/shell: TOOLSET := $(TOOLSET) $(builddir)/shell: $(OBJS) $(obj).target/tools/gyp/libv8_base.a $(obj).target/tools/gyp/libv8_snapshot.a FORCE_DO_CMD $(call do_cmd,link) all_deps += $(builddir)/shell # Add target alias .PHONY: shell shell: $(builddir)/shell # Add executable to "all" target. .PHONY: all all: $(builddir)/shell