Makefile 757 Bytes
Newer Older
1 2 3 4 5 6
#-------------------------------------------------------------------------
#
# Makefile--
#    Makefile for access/rtree
#
# IDENTIFICATION
Marc G. Fournier's avatar
Marc G. Fournier committed
7
#    $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/Makefile,v 1.3 1996/11/05 10:54:15 scrappy Exp $
8 9 10 11 12 13
#
#-------------------------------------------------------------------------

SRCDIR = ../../..
include ../../../Makefile.global

Marc G. Fournier's avatar
Marc G. Fournier committed
14 15
INCLUDE_OPT = -I../.. \
              -I../../port/$(PORTNAME) \
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
              -I../../../include

CFLAGS+=$(INCLUDE_OPT)

OBJS = rtget.o rtproc.o rtree.o rtscan.o rtstrat.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