]> granicus.if.org Git - postgresql/blob - src/backend/access/hash/Makefile
New LDOUT makefile variable for QNX os.
[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.8 1999/12/13 22:32:23 momjian Exp $
8 #
9 #-------------------------------------------------------------------------
10
11 SRCDIR = ../../..
12 include ../../../Makefile.global
13
14 CFLAGS += -I../..
15
16 OBJS = hash.o hashfunc.o hashinsert.o hashovfl.o hashpage.o hashscan.o \
17        hashsearch.o hashstrat.o hashutil.o
18
19 all: SUBSYS.o
20
21 SUBSYS.o: $(OBJS)
22         $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
23
24 depend dep:
25         $(CC) -MM $(CFLAGS) *.c >depend
26
27 clean: 
28         rm -f SUBSYS.o $(OBJS)
29
30 ifeq (depend,$(wildcard depend))
31 include depend
32 endif
33