]> granicus.if.org Git - postgresql/blob - src/backend/access/index/Makefile
13f4b102d8f216a6254e2fc801b862f3c35b18fa
[postgresql] / src / backend / access / index / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile--
4 #    Makefile for access/index
5 #
6 # IDENTIFICATION
7 #    $Header: /cvsroot/pgsql/src/backend/access/index/Makefile,v 1.3 1996/11/05 10:02:01 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 = genam.o indexam.o istrat.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