File tree Expand file tree Collapse file tree 9 files changed +14
-51
lines changed Expand file tree Collapse file tree 9 files changed +14
-51
lines changed Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.22 1997/04/15 18:36:45 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.23 1997/04/26 05:04:13 scrappy Exp $
11
11
#
12
12
# NOTES
13
13
# Essentially all Postgres make files include this file and use the
@@ -232,7 +232,7 @@ YFLAGS= @YFLAGS@
232
232
YACC= @YACC@
233
233
LEX= @LEX@
234
234
AROPT= @AROPT@
235
- CFLAGS= @CPPFLAGS@ @CFLAGS@
235
+ CFLAGS= -I$(SRCDIR)/include @CPPFLAGS@ @CFLAGS@
236
236
CFLAGS_SL= @SHARED_LIB@
237
237
LDFLAGS= @LDFLAGS@ @LIBS@
238
238
DLSUFFIX= @DLSUFFIX@
Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.6 1996/11/13 10:35:20 bryanh Exp $
10
+ # $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.7 1997/04/26 05:04:21 scrappy Exp $
11
11
#
12
12
# -------------------------------------------------------------------------
13
13
14
- SRCDIR =..
15
- include ../Makefile.global
14
+ # include ../Makefile.global
16
15
17
16
.DEFAULT all :
18
17
#
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/Makefile.in,v 1.2 1997/04/04 10:41:17 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/Makefile.in,v 1.3 1997/04/26 05:04:55 scrappy Exp $
11
11
#
12
12
# -------------------------------------------------------------------------
13
13
14
14
SRCDIR = ../..
15
15
include ../../Makefile.global
16
- include ../Makefile.global
17
16
18
17
OBJS = pg_dump.o common.o @STRDUP@
19
18
Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/bin/pg_id/Attic/Makefile,v 1.5 1997/04/04 10:41:26 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/bin/pg_id/Attic/Makefile,v 1.6 1997/04/26 05:05:20 scrappy Exp $
11
11
#
12
12
# -------------------------------------------------------------------------
13
13
14
14
SRCDIR = ../..
15
15
include ../../Makefile.global
16
- include ../Makefile.global
17
16
18
17
OBJS = pg_id.o
19
18
Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/bin/pg_version/Attic/Makefile,v 1.4 1997/04/04 10:41:37 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/bin/pg_version/Attic/Makefile,v 1.5 1997/04/26 05:05:43 scrappy Exp $
11
11
#
12
12
# -------------------------------------------------------------------------
13
13
14
14
SRCDIR = ../..
15
15
include ../../Makefile.global
16
- include ../Makefile.global
17
16
18
17
OBJS = pg_version.o ../../utils/version.o
19
18
19
+ CFLAGS+ = -I$(SRCDIR ) /include
20
+
20
21
all : pg_version
21
22
22
23
pg_version : submake $(OBJS )
Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.6 1997/04/04 10:42:11 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.7 1997/04/26 05:06:12 scrappy Exp $
11
11
#
12
12
# -------------------------------------------------------------------------
13
13
14
14
SRCDIR = ../..
15
15
include ../../Makefile.global
16
- include ../Makefile.global
17
16
18
17
CFLAGS+ = -I$(TCL_INCDIR ) -I$(TK_INCDIR ) -I$(X11_INCDIR ) -I$(SRCDIR ) /libpgtcl
19
18
Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/bin/psql/Attic/Makefile.in,v 1.4 1997/04/04 10:42:23 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/bin/psql/Attic/Makefile.in,v 1.5 1997/04/26 05:06:40 scrappy Exp $
11
11
#
12
12
# -------------------------------------------------------------------------
13
13
14
14
SRCDIR = ../..
15
15
include ../../Makefile.global
16
16
17
- INCLUDE_OPT: = -I$(LIBPQDIR ) \
18
- -I../../include
19
-
20
- CFLAGS+ = $(INCLUDE_OPT )
17
+ CFLAGS+ = -I$(LIBPQDIR )
21
18
22
19
OBJS = psql.o stringutils.o @STRDUP@
23
20
Original file line number Diff line number Diff line change 4
4
* this file contains the interface to version.c.
5
5
* Also some parameters.
6
6
*
7
- * $Id: version.h,v 1.1 1996/11/11 14:24:38 bryanh Exp $
7
+ * $Id: version.h,v 1.2 1997/04/26 05:07:12 scrappy Exp $
8
8
*
9
9
*-------------------------------------------------------------------------
10
10
*/
18
18
SetPgVersion (const char * path , char * * reason_p );
19
19
20
20
#define PG_RELEASE 6
21
- #define PG_VERSION 0
21
+ #define PG_VERSION 1
22
22
#define PG_VERFILE "PG_VERSION"
23
23
24
24
#endif
You can’t perform that action at this time.
0 commit comments