1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-27 23:21:58 +03:00

Recognize dependencies more reliably.

This commit is contained in:
Bryan Henderson
1996-11-10 03:13:59 +00:00
parent aaeef4d17d
commit 08029facb3
4 changed files with 40 additions and 24 deletions

View File

@ -4,19 +4,23 @@
# Makefile for optimizer
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/optimizer/Makefile,v 1.1 1996/10/27 09:48:14 bryanh Exp $
# $Header: /cvsroot/pgsql/src/backend/optimizer/Makefile,v 1.2 1996/11/10 03:12:38 bryanh Exp $
#
#-------------------------------------------------------------------------
all: SUBSYS.o
all: submake SUBSYS.o
SUBSYS.o:
OBJS = path/SUBSYS.o plan/SUBSYS.o prep/SUBSYS.o util/SUBSYS.o
SUBSYS.o: $(OBJS)
$(LD) -r -o SUBSYS.o $(OBJS)
.PHONY: submake clean
submake:
$(MAKE) -C path SUBSYS.o
$(MAKE) -C plan SUBSYS.o
$(MAKE) -C prep SUBSYS.o
$(MAKE) -C util SUBSYS.o
$(LD) -r -o SUBSYS.o \
path/SUBSYS.o plan/SUBSYS.o prep/SUBSYS.o util/SUBSYS.o
clean:
rm -f SUBSYS.o