head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	97.05.19.04.31.06;	author vadim;	state dead;
branches;
next	1.1;

1.1
date	97.03.18.18.31.40;	author scrappy;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Multi-column indices creation is now supported in normal way
(CREATE INDEX ...)
@
text
@
POSTSRC= /home/postgres/postgres95/src

include $(POSTSRC)/Makefile.global
include $(POSTSRC)/Makefile.custom

CFLAGS= $(CFLAGS_SL) -Wall -Wmissing-prototypes -I$(POSTSRC)/include

%.so: %.o
	$(LD) -x -r -o $<.obj $<
	@@echo building shared object $@@
	@@rm -f $@@.pic
	@@${AR} cq $@@.pic `lorder $<.obj | tsort`
	${RANLIB} $@@.pic
	@@rm -f $@@
	$(LD) -x -Bshareable -Bforcearchive \
	  -o $@@ $@@.pic

#
# build dynamically-loaded object file
#
DLOBJS= multikey.so
objdir= ./

CLEANFILES+= $(DLOBJS)

all:: $(DLOBJS)

$(DLOBJS):	multikey.c
@


1.1
log
@Add in Vadim's multikey functions/examples as part of contrib
@
text
@@
