42 lines
1.6 KiB
Makefile
Executable File
42 lines
1.6 KiB
Makefile
Executable File
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile
|
|
# Makefile for executor
|
|
#
|
|
# IDENTIFICATION
|
|
# src/gausskernel/runtime/executor/Makefile
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/gausskernel/runtime/executor
|
|
top_builddir = ../../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
ifneq "$(MAKECMDGOALS)" "clean"
|
|
ifneq "$(MAKECMDGOALS)" "distclean"
|
|
ifneq "$(shell which g++ |grep hutaf_llt |wc -l)" "1"
|
|
-include $(DEPEND)
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
OBJS = execAmi.o execCurrent.o execGrouping.o execJunk.o execMain.o \
|
|
execParallel.o execProcnode.o execQual.o execScan.o execTuples.o \
|
|
execUtils.o functions.o instrument.o nodeAppend.o nodeAgg.o \
|
|
nodeBitmapAnd.o nodeBitmapOr.o \
|
|
nodeBitmapHeapscan.o nodeBitmapIndexscan.o nodeGather.o nodeHash.o \
|
|
nodeHashjoin.o nodeIndexscan.o nodeIndexonlyscan.o \
|
|
nodeLimit.o nodeLockRows.o \
|
|
nodeMaterial.o nodeMergeAppend.o nodeMergejoin.o nodeModifyTable.o \
|
|
nodeNestloop.o nodeFunctionscan.o nodeRecursiveunion.o nodeResult.o \
|
|
nodeSamplescan.o nodeSeqscan.o nodeSetOp.o nodeSort.o nodeUnique.o \
|
|
nodeValuesscan.o nodeCtescan.o nodeWorktablescan.o \
|
|
nodeGroup.o nodeSubplan.o nodeSubqueryscan.o nodeTidscan.o \
|
|
nodeForeignscan.o nodeWindowAgg.o tstoreReceiver.o tqueue.o spi.o \
|
|
nodePartIterator.o nodeStub.o execClusterResize.o lightProxy.o execMerge.o \
|
|
nodeExtensible.o opfusion.o opfusion_scan.o opfusion_util.o
|
|
|
|
override CPPFLAGS += -D__STDC_FORMAT_MACROS
|
|
|
|
include $(top_srcdir)/src/gausskernel/common.mk
|