1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

First pass through, of many to come, towards making the whole source

tree "non-PORTNAME" dependent.  Technically, anything that is PORTNAME
dependent should be able to be derived at compile time, through configure
or through gcc
This commit is contained in:
Marc G. Fournier
1997-12-17 04:59:16 +00:00
parent 9ef6b32c47
commit 542d4e528d
9 changed files with 57 additions and 31 deletions

View File

@@ -34,7 +34,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.27 1997/11/13 03:22:10 momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.28 1997/12/17 04:58:19 scrappy Exp $
#
#-------------------------------------------------------------------------
@@ -60,7 +60,11 @@ postgres: $(OBJS) ../utils/version.o
$(OBJS): $(DIRS:%=%.dir)
$(DIRS:%=%.dir):
ifdef PORTNAME
$(MAKE) -C $(subst .dir,,$@) all PORTNAME=$(PORTNAME)
else
$(MAKE) -C $(subst .dir,,$@) all
endif
../utils/version.o:
$(MAKE) -C ../utils version.o
@@ -96,10 +100,18 @@ clean:
rm -f postgres $(POSTGRES_IMP) fmgr.h parse.h \
global1.bki.source local1_template1.bki.source \
global1.description local1_template1.description
ifdef PORTNAME
for i in $(DIRS); do $(MAKE) -C $$i clean PORTNAME=$(PORTNAME); done
else
for i in $(DIRS); do $(MAKE) -C $$i clean; done
endif
.DEFAULT:
ifdef PORTNAME
for i in $(DIRS); do $(MAKE) -C $$i $@ PORTNAME=$(PORTNAME); done
else
for i in $(DIRS); do $(MAKE) -C $$i $@; done
endif
#############################################################################
#