diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-28 23:02:43 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-28 23:02:43 +0000 |
commit | 28fad34c7bbc99597bf4e148f6e6ee55bb04b54f (patch) | |
tree | 771e76bb6347892e28503fc86b973e1ee62b328c | |
parent | 4978d3f4bbb41155c1a784280f40f5a2848673fd (diff) | |
download | postgresql-28fad34c7bbc99597bf4e148f6e6ee55bb04b54f.tar.gz postgresql-28fad34c7bbc99597bf4e148f6e6ee55bb04b54f.zip |
modifications required to reflect centralized include files
-rw-r--r-- | src/bin/Makefile.global | 7 | ||||
-rw-r--r-- | src/interfaces/libpq/Makefile | 3 |
2 files changed, 7 insertions, 3 deletions
diff --git a/src/bin/Makefile.global b/src/bin/Makefile.global index 25277f6b913..937d1cf0fe6 100644 --- a/src/bin/Makefile.global +++ b/src/bin/Makefile.global @@ -7,11 +7,14 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/Attic/Makefile.global,v 1.7 1996/08/14 04:54:24 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/bin/Attic/Makefile.global,v 1.8 1996/08/28 23:00:07 scrappy Exp $ # #------------------------------------------------------------------------- -CFLAGS+= -I$(srcdir)/backend -I$(srcdir)/backend/include -I$(srcdir)/libpq +CFLAGS+= -I$(srcdir)/backend \ + -I$(srcdir)/backend/include \ + -I$(srcdir)/libpq \ + -I$(srcdir)/include # # link with libpq, so we put it here. diff --git a/src/interfaces/libpq/Makefile b/src/interfaces/libpq/Makefile index 2328ccc07b8..bef510b4b3c 100644 --- a/src/interfaces/libpq/Makefile +++ b/src/interfaces/libpq/Makefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.3 1996/08/01 05:04:29 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.4 1996/08/28 23:02:43 scrappy Exp $ # #------------------------------------------------------------------------- @@ -17,6 +17,7 @@ MKDIR= ../mk include $(MKDIR)/postgres.mk CFLAGS+= -I$(srcdir)/backend/include \ + -I$(srcdir)/include \ -I$(srcdir)/backend \ -I$(CURDIR) \ |