]> granicus.if.org Git - postgresql/blob - src/backend/access/rtree/Makefile
f5896bd266dcd0d7d56339ed44068b73822dc633
[postgresql] / src / backend / access / rtree / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile--
4 #    Makefile for access/rtree
5 #
6 # IDENTIFICATION
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 SRCDIR = ../../..
12 include ../../../Makefile.global
13
14 INCLUDE_OPT = -I../.. \
15               -I../../port/$(PORTNAME) \
16               -I../../../include
17
18 CFLAGS+=$(INCLUDE_OPT)
19
20 OBJS = rtget.o rtproc.o rtree.o rtscan.o rtstrat.o
21
22 all: SUBSYS.o
23
24 SUBSYS.o: $(OBJS)
25         $(LD) -r -o SUBSYS.o $(OBJS)
26
27 depend dep:
28         $(CC) -MM $(INCLUDE_OPT) *.c >depend
29
30 clean: 
31         rm -f SUBSYS.o $(OBJS)
32
33 ifeq (depend,$(wildcard depend))
34 include depend
35 endif
36