]> granicus.if.org Git - postgresql/blob - src/backend/access/hash/Makefile
5e4f56a80cce027ec1c1158030832e7a6c40a69a
[postgresql] / src / backend / access / hash / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile--
4 #    Makefile for access/hash
5 #
6 # IDENTIFICATION
7 #    $Header: /cvsroot/pgsql/src/backend/access/hash/Makefile,v 1.10 2000/08/31 16:09:33 petere Exp $
8 #
9 #-------------------------------------------------------------------------
10
11 subdir = src/backend/access/hash
12 top_builddir = ../../../..
13 include $(top_builddir)/src/Makefile.global
14
15 OBJS = hash.o hashfunc.o hashinsert.o hashovfl.o hashpage.o hashscan.o \
16        hashsearch.o hashstrat.o hashutil.o
17
18 all: SUBSYS.o
19
20 SUBSYS.o: $(OBJS)
21         $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
22
23 depend dep:
24         $(CC) -MM $(CFLAGS) *.c >depend
25
26 clean: 
27         rm -f SUBSYS.o $(OBJS)
28
29 ifeq (depend,$(wildcard depend))
30 include depend
31 endif
32