mirror of
https://github.com/postgres/postgres.git
synced 2026-06-03 14:28:20 -04:00
fcecc5ca1e
I will be cleaning this up more before the Oct 1 deadline. David Hartwig. AND/OR fix.
35 lines
686 B
Makefile
35 lines
686 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for optimizer/prep
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/backend/optimizer/prep/Makefile,v 1.8 1998/09/03 02:34:32 momjian Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR = ../../..
|
|
include ../../../Makefile.global
|
|
|
|
CFLAGS += -I../..
|
|
|
|
OBJS = prepqual.o preptlist.o prepunion.o prepkeyset.o
|
|
|
|
# not ready yet: predmig.o xfunc.o
|
|
|
|
all: SUBSYS.o
|
|
|
|
SUBSYS.o: $(OBJS)
|
|
$(LD) -r -o SUBSYS.o $(OBJS)
|
|
|
|
depend dep:
|
|
$(CC) -MM $(CFLAGS) *.c >depend
|
|
|
|
clean:
|
|
rm -f SUBSYS.o $(OBJS)
|
|
|
|
ifeq (depend,$(wildcard depend))
|
|
include depend
|
|
endif
|
|
|