mirror of
https://github.com/postgres/postgres.git
synced 2026-02-10 14:23:26 -05:00
41 lines
1 KiB
Makefile
41 lines
1 KiB
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for executor
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/backend/executor/Makefile,v 1.3 1997/08/30 10:28:47 vadim Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR = ../..
|
|
include ../../Makefile.global
|
|
|
|
INCLUDE_OPT = -I.. \
|
|
-I../port/$(PORTNAME) \
|
|
-I../../include
|
|
|
|
CFLAGS+=$(INCLUDE_OPT)
|
|
|
|
OBJS = execAmi.o execFlatten.o execJunk.o execMain.o \
|
|
execProcnode.o execQual.o execScan.o execTuples.o \
|
|
execUtils.o functions.o nodeAppend.o nodeAgg.o nodeHash.o \
|
|
nodeHashjoin.o nodeIndexscan.o nodeMaterial.o nodeMergejoin.o \
|
|
nodeNestloop.o nodeResult.o nodeSeqscan.o nodeSort.o \
|
|
nodeUnique.o nodeTee.o nodeGroup.o spi.o
|
|
|
|
all: SUBSYS.o
|
|
|
|
SUBSYS.o: $(OBJS)
|
|
$(LD) -r -o SUBSYS.o $(OBJS)
|
|
|
|
depend dep:
|
|
$(CC) -MM $(INCLUDE_OPT) *.c >depend
|
|
|
|
clean:
|
|
rm -f SUBSYS.o $(OBJS)
|
|
|
|
ifeq (depend,$(wildcard depend))
|
|
include depend
|
|
endif
|
|
|