mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +03:00
Attached you'll find a (big) patch that fixes make dep and make depend in all Makefiles where I found it to be appropriate. It also removes the dependency in Makefile.global for NAMEDATALEN and OIDNAMELEN by making backend/catalog/genbki.sh and bin/initdb/initdb.sh a little smarter. This no longer requires initdb.sh that is turned into initdb with a sed script when installing Postgres, hence initdb.sh should be renamed to initdb (after the patch has been applied :-) ) This patch is against the 6.3 sources, as it took a while to complete. Please review and apply, Cheers, Jeroen van Vianen
33 lines
768 B
Makefile
33 lines
768 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for optimizer
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/backend/optimizer/Makefile,v 1.5 1998/04/06 00:23:04 momjian Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR= ../..
|
|
include ../../Makefile.global
|
|
|
|
all: submake SUBSYS.o
|
|
|
|
OBJS = path/SUBSYS.o plan/SUBSYS.o prep/SUBSYS.o util/SUBSYS.o geqo/SUBSYS.o
|
|
|
|
DIRS = path plan prep util geqo
|
|
|
|
SUBSYS.o: $(OBJS)
|
|
$(LD) -r -o SUBSYS.o $(OBJS)
|
|
|
|
.PHONY: submake clean dep depend
|
|
submake:
|
|
for i in $(DIRS); do $(MAKE) -C $$i SUBSYS.o; done
|
|
|
|
clean:
|
|
rm -f SUBSYS.o
|
|
for i in $(DIRS); do $(MAKE) -C $$i clean; done
|
|
|
|
.DEFAULT:
|
|
for i in $(DIRS); do $(MAKE) -C $$i $@; done
|