diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-27 06:10:50 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-27 06:10:50 +0000 |
commit | 51b3f2d3715175794e0b04e5ee2e6585cc80813a (patch) | |
tree | 706e5ccba1dba00ed5bcfad07d7d7ca4223b9e98 | |
parent | bfc308d196b2e39bbd149a383de4c710a3a6e5f9 (diff) | |
download | postgresql-51b3f2d3715175794e0b04e5ee2e6585cc80813a.tar.gz postgresql-51b3f2d3715175794e0b04e5ee2e6585cc80813a.zip |
Create support for a "common" include directory for the source
tree, instead of having include files all over the place...
Immediate goal...a 'config.h' file so that we can make #ifdef's
being used throughout the code more a rarity as far as porting
is concerned
-rw-r--r-- | src/backend/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/backend/Makefile b/src/backend/Makefile index aaaa6683370..eb366f7ee83 100644 --- a/src/backend/Makefile +++ b/src/backend/Makefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.3 1996/08/19 13:51:55 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.4 1996/08/27 06:10:50 scrappy Exp $ # #------------------------------------------------------------------------- @@ -83,9 +83,11 @@ endif # CFLAGS+= -DPOSTGRESDIR='"$(POSTGRESDIR)"' \ -DPGDATADIR='"$(DATADIR)"' \ - -I$(CURDIR)/. -I$(CURDIR)/$(objdir) \ + -I$(CURDIR)/. \ + -I$(CURDIR)/$(objdir) \ -I$(CURDIR)/include \ - -I$(CURDIR)/port/$(PORTNAME) + -I$(CURDIR)/port/$(PORTNAME) \ + -I$(CURDIR)/../include # turn this on if you prefer European style dates instead of American # style dates |