Makefile 636 字节
Newer Older
1 2 3 4 5 6
#-------------------------------------------------------------------------
#
# Makefile--
#    Makefile for storage/lmgr
#
# IDENTIFICATION
B
Hi,  
Bruce Momjian 已提交
7
#    $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Makefile,v 1.6 1998/04/06 00:25:43 momjian Exp $
8 9 10 11 12 13
#
#-------------------------------------------------------------------------

SRCDIR = ../../..
include ../../../Makefile.global

B
Hi,  
Bruce Momjian 已提交
14
CFLAGS += -I../..
15 16 17 18 19 20 21 22 23

OBJS = lmgr.o lock.o multi.o proc.o single.o

all: SUBSYS.o

SUBSYS.o: $(OBJS)
	$(LD) -r -o SUBSYS.o $(OBJS)

depend dep:
B
Hi,  
Bruce Momjian 已提交
24
	$(CC) -MM $(CFLAGS) *.c >depend
25 26 27 28 29 30 31 32

clean: 
	rm -f SUBSYS.o $(OBJS)

ifeq (depend,$(wildcard depend))
include depend
endif