Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 51b3f2d

Browse files
committed
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
1 parent bfc308d commit 51b3f2d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/backend/Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.3 1996/08/19 13:51:55 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.4 1996/08/27 06:10:50 scrappy Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -83,9 +83,11 @@ endif
8383
#
8484
CFLAGS+= -DPOSTGRESDIR='"$(POSTGRESDIR)"' \
8585
-DPGDATADIR='"$(DATADIR)"' \
86-
-I$(CURDIR)/. -I$(CURDIR)/$(objdir) \
86+
-I$(CURDIR)/. \
87+
-I$(CURDIR)/$(objdir) \
8788
-I$(CURDIR)/include \
88-
-I$(CURDIR)/port/$(PORTNAME)
89+
-I$(CURDIR)/port/$(PORTNAME) \
90+
-I$(CURDIR)/../include
8991

9092
# turn this on if you prefer European style dates instead of American
9193
# style dates

0 commit comments

Comments
 (0)