mirror of
https://github.com/postgres/postgres.git
synced 2025-11-07 19:06:32 +03:00
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for executor
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/backend/executor/Makefile,v 1.1 1996/10/27 09:47:26 bryanh Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR = ../..
|
|
include ../../Makefile.global
|
|
|
|
INCLUDE_OPT = -I.. \
|
|
-I../port/$(PORTNAME) \
|
|
-I../include \
|
|
-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
|
|
|
|
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
|
|
|