1996-10-27 04:55:05 -05:00
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# Makefile--
|
|
|
|
|
# Makefile for utils/sort
|
|
|
|
|
#
|
|
|
|
|
# IDENTIFICATION
|
2000-08-31 12:12:35 -04:00
|
|
|
# $Header: /cvsroot/pgsql/src/backend/utils/sort/Makefile,v 1.12 2000/08/31 16:10:59 petere Exp $
|
1996-10-27 04:55:05 -05:00
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
|
2000-08-31 12:12:35 -04:00
|
|
|
subdir = src/backend/utils/sort
|
|
|
|
|
top_builddir = ../../../..
|
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
1996-10-27 04:55:05 -05:00
|
|
|
|
2000-06-18 18:44:35 -04:00
|
|
|
OBJS = logtape.o tuplesort.o tuplestore.o
|
1996-10-27 04:55:05 -05:00
|
|
|
|
|
|
|
|
all: SUBSYS.o
|
|
|
|
|
|
|
|
|
|
SUBSYS.o: $(OBJS)
|
1999-12-13 17:35:27 -05:00
|
|
|
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
|
1996-10-27 04:55:05 -05:00
|
|
|
|
|
|
|
|
depend dep:
|
1998-04-05 20:32:26 -04:00
|
|
|
$(CC) -MM $(CFLAGS) *.c >depend
|
1996-10-27 04:55:05 -05:00
|
|
|
|
|
|
|
|
clean:
|
|
|
|
|
rm -f SUBSYS.o $(OBJS)
|
|
|
|
|
|
|
|
|
|
ifeq (depend,$(wildcard depend))
|
|
|
|
|
include depend
|
|
|
|
|
endif
|