diff options
| author | Marc G. Fournier <scrappy@hub.org> | 1997-12-19 02:09:10 +0000 |
|---|---|---|
| committer | Marc G. Fournier <scrappy@hub.org> | 1997-12-19 02:09:10 +0000 |
| commit | 5379b84eff3ae207635d7ac9527b0a3f5eb272e7 (patch) | |
| tree | 84d6a71200ffe5edf43596bc2fbf3276737e086a /src/backend/postmaster/Makefile | |
| parent | 30856a390457682db4f8577e9f5a7f8521839c6f (diff) | |
| download | postgresql-5379b84eff3ae207635d7ac9527b0a3f5eb272e7.tar.gz | |
More cleanups. I can now compile without PORTNAME being defined n
Makefile.global.
End result, if all goes well, should allow for much easier porting, since
there will no longer be a concept of a "port". Most, if not everything,
*should* be determined by configure, or by the compiler itself. Still
work to be done though :)
Diffstat (limited to 'src/backend/postmaster/Makefile')
| -rw-r--r-- | src/backend/postmaster/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/backend/postmaster/Makefile b/src/backend/postmaster/Makefile index 115a403d3a..a04ca75871 100644 --- a/src/backend/postmaster/Makefile +++ b/src/backend/postmaster/Makefile @@ -4,16 +4,18 @@ # Makefile for postmaster # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/postmaster/Makefile,v 1.5 1997/04/02 18:12:39 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/backend/postmaster/Makefile,v 1.6 1997/12/19 02:06:34 scrappy Exp $ # #------------------------------------------------------------------------- SRCDIR = ../.. include ../../Makefile.global -INCLUDE_OPT = -I.. \ - -I../port/$(PORTNAME) \ - -I../../include +INCLUDE_OPT = -I.. + +ifdef PORTNAME +INCLUDE_OPT+=-I../port/$(PORTNAME) +endif CFLAGS+=$(INCLUDE_OPT) |
