File tree 4 files changed +273
-230
lines changed
4 files changed +273
-230
lines changed Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.29 1998/09/29 12:40:34 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.30 1998/10/06 05:42:55 thomas Exp $
11
11
#
12
12
#-------------------------------------------------------------------------
13
13
38
38
$(MAKE) -C interfaces all
39
39
$(MAKE) -C bin all
40
40
$(MAKE) -C pl all
41
- ifneq ($(wildcard man), )
42
- $(MAKE) -C man all
43
- endif
44
41
@if test $@. = all. -o $@. = .; then \
45
42
echo All of PostgreSQL is successfully made. Ready to install. ;\
46
43
fi
@@ -51,9 +48,6 @@ install:
51
48
$(MAKE) -C backend install
52
49
$(MAKE) -C bin install
53
50
$(MAKE) -C pl install
54
- ifneq ($(wildcard man), )
55
- $(MAKE) -C man install
56
- endif
57
51
$(MAKE) -C interfaces install
58
52
cat ../register.txt
59
53
66
60
$(MAKE) -C pl clean
67
61
$(MAKE) -C test clean
68
62
$(MAKE) -C ../contrib/spi clean
69
- ifneq ($(wildcard man), )
70
- $(MAKE) -C man clean
71
- endif
72
63
73
64
distclean: clean
74
65
rm -f Makefile.global \
@@ -102,9 +93,6 @@ distclean: clean
102
93
$(MAKE) -C interfaces $@
103
94
$(MAKE) -C bin $@
104
95
$(MAKE) -C pl $@
105
- ifneq ($(wildcard man), )
106
- $(MAKE) -C man $@
107
- endif
108
96
@if test $@. = all. -o $@. = .; then \
109
97
echo All of PostgreSQL is successfully made. Ready to install. ;\
110
98
fi
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.45 1998/07/26 04:30:15 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.46 1998/10/06 05:42:56 thomas Exp $
11
11
#
12
12
# NOTES
13
13
# Essentially all Postgres make files include this file and use the
@@ -80,6 +80,16 @@ POSTDOCDIR= $(POSTGRESDIR)/doc
80
80
# Where the header files necessary to build frontend programs get installed.
81
81
HEADERDIR= $(POSTGRESDIR)/include
82
82
83
+ # Where the ODBC files get installed.
84
+ # This is the root for the actual locations,
85
+ # to override /usr/local in the standalone version.
86
+ POSTODBCDIR= $(POSTGRESDIR)
87
+
88
+ # Where the ODBC installation-wide configuration file gets installed.
89
+ # This needs to be a client-side readable area, so can't go in $PGDATA.
90
+ # - thomas 1998-10-05
91
+ ODBCINST= $(POSTGRESDIR)
92
+
83
93
##############################################################################
84
94
#
85
95
# FEATURES
@@ -143,6 +153,10 @@ TK_LIB= @TK_LIB@
143
153
144
154
USE_PERL= @USE_PERL@
145
155
156
+ #
157
+ # enable native odbc driver support
158
+ USE_ODBC= @USE_ODBC@
159
+
146
160
X_CFLAGS= @X_CFLAGS@
147
161
X_LIBS= @X_LIBS@
148
162
X11_LIBS= -lX11 @X_EXTRA_LIBS@
You can’t perform that action at this time.
0 commit comments