diff options
author | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-11-10 03:13:59 +0000 |
---|---|---|
committer | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-11-10 03:13:59 +0000 |
commit | 08029facb3e1f6dcddf1cab8c7376ea0a10bc23f (patch) | |
tree | 1611f9da61017a841dd39d7ed4367d8eea06952e /src/backend/access | |
parent | aaeef4d17db9ded501fa02c9ca6c00f86258b171 (diff) | |
download | postgresql-08029facb3e1f6dcddf1cab8c7376ea0a10bc23f.tar.gz postgresql-08029facb3e1f6dcddf1cab8c7376ea0a10bc23f.zip |
Recognize dependencies more reliably.
Diffstat (limited to 'src/backend/access')
-rw-r--r-- | src/backend/access/Makefile | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/backend/access/Makefile b/src/backend/access/Makefile index 0bd4e1770f7..a098d3d275e 100644 --- a/src/backend/access/Makefile +++ b/src/backend/access/Makefile @@ -4,13 +4,21 @@ # Makefile for the access methods module # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/access/Makefile,v 1.1 1996/10/27 09:45:42 bryanh Exp $ +# $Header: /cvsroot/pgsql/src/backend/access/Makefile,v 1.2 1996/11/10 03:11:46 bryanh Exp $ # #------------------------------------------------------------------------- -all: SUBSYS.o +OBJS = common/SUBSYS.o gist/SUBSYS.o hash/SUBSYS.o heap/SUBSYS.o \ + index/SUBSYS.o rtree/SUBSYS.o nbtree/SUBSYS.o transam/SUBSYS.o -SUBSYS.o: + +all: submake SUBSYS.o + +SUBSYS.o: $(OBJS) + $(LD) -r -o SUBSYS.o $(OBJS) + +.PHONY: submake +submake: $(MAKE) -C common SUBSYS.o $(MAKE) -C gist SUBSYS.o $(MAKE) -C hash SUBSYS.o @@ -19,9 +27,6 @@ SUBSYS.o: $(MAKE) -C rtree SUBSYS.o $(MAKE) -C nbtree SUBSYS.o $(MAKE) -C transam SUBSYS.o - $(LD) -r -o SUBSYS.o \ - common/SUBSYS.o gist/SUBSYS.o hash/SUBSYS.o heap/SUBSYS.o \ - index/SUBSYS.o rtree/SUBSYS.o nbtree/SUBSYS.o transam/SUBSYS.o clean: rm -f SUBSYS.o |