]> granicus.if.org Git - postgresql/blob - src/backend/storage/lmgr/Makefile
906f1256c8755f4cc0094356ae370b55cdb8903e
[postgresql] / src / backend / storage / lmgr / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile--
4 #    Makefile for storage/lmgr
5 #
6 # IDENTIFICATION
7 #    $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Makefile,v 1.11 1999/12/13 22:33:54 momjian Exp $
8 #
9 #-------------------------------------------------------------------------
10
11 SRCDIR = ../../..
12 include ../../../Makefile.global
13
14 CFLAGS += -I../..
15 ifdef MULTIBYTE
16 CFLAGS+= $(MBFLAGS)
17 endif
18
19 OBJS = lmgr.o lock.o proc.o
20
21 all: SUBSYS.o
22
23 SUBSYS.o: $(OBJS)
24         $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
25
26 depend dep:
27         $(CC) -MM $(CFLAGS) *.c >depend
28
29 clean: 
30         rm -f SUBSYS.o $(OBJS)
31
32 ifeq (depend,$(wildcard depend))
33 include depend
34 endif
35