File tree 5 files changed +47
-32
lines changed 5 files changed +47
-32
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # -------------------------------------------------------------------------
2
+ #
3
+ # Makefile
4
+ # Makefile for pgaccess
5
+ #
6
+ # Copyright (c) 1994, Regents of the University of California
7
+ #
8
+ # IDENTIFICATION
9
+ # $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile.in,v 1.2.2.1 1999/10/31 12:34:10 momjian Exp $
10
+ #
11
+ # -------------------------------------------------------------------------
12
+
13
+ SRCDIR = ../..
14
+ include $(SRCDIR ) /Makefile.global
15
+
16
+ all : pgaccess
17
+
18
+ pgaccess : pgaccess.sh
19
+ sed -e ' s;__wish__;@wish@;' pgaccess.sh | \
20
+ sed -e ' s;__POSTGRESDIR__;$(POSTGRESDIR);' \
21
+ > pgaccess
22
+
23
+ install :
24
+ $(INSTALL ) $(INSTL_EXE_OPTS ) pgaccess $(BINDIR ) /pgaccess
25
+ @if [ ! -d $( POSTGRESDIR) /pgaccess ]; then mkdir $(POSTGRESDIR ) /pgaccess; fi
26
+ $(INSTALL ) $(INSTL_EXE_OPTS ) main.tcl $(POSTGRESDIR ) /pgaccess
27
+ @if [ ! -d $( POSTGRESDIR) /pgaccess/lib ]; then mkdir $(POSTGRESDIR ) /pgaccess/lib; fi
28
+ $(INSTALL ) $(INSTLOPTS ) lib/* .tcl $(POSTGRESDIR ) /pgaccess/lib
29
+ @if [ ! -d $( POSTGRESDIR) /pgaccess/lib/help ]; then mkdir $(POSTGRESDIR ) /pgaccess/lib/help; fi
30
+ $(INSTALL ) $(INSTLOPTS ) lib/help/* .hlp $(POSTGRESDIR ) /pgaccess/lib/help
31
+ @if [ ! -d $( POSTGRESDIR) /pgaccess/lib/languages ]; then mkdir $(POSTGRESDIR ) /pgaccess/lib/languages; fi
32
+ $(INSTALL ) $(INSTLOPTS ) lib/languages/[a-z]* $(POSTGRESDIR ) /pgaccess/lib/languages
33
+
34
+ clean :
35
+ rm -f pgaccess
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ PATH_TO_WISH=__wish__
4
+ PGACCESS_HOME=__POSTGRESDIR__/pgaccess
5
+
6
+ export PATH_TO_WISH
7
+ export PGACCESS_HOME
8
+
9
+ exec $PATH_TO_WISH $PGACCESS_HOME /main.tcl " $@ "
Original file line number Diff line number Diff line change @@ -1093,6 +1093,7 @@ then
1093
1093
else
1094
1094
AC_MSG_RESULT($TK_CONFIG_SH)
1095
1095
AC_SUBST(TK_CONFIG_SH)
1096
+ AC_PATH_PROG(wish, wish)
1096
1097
fi
1097
1098
fi
1098
1099
@@ -1186,9 +1187,10 @@ AC_OUTPUT(
1186
1187
backend/utils/Gen_fmgrtab.sh
1187
1188
bin/pg_dump/Makefile
1188
1189
bin/pg_version/Makefile
1189
- bin/psql /Makefile
1190
+ bin/pgaccess /Makefile
1190
1191
bin/pgtclsh/mkMakefile.tcldefs.sh
1191
1192
bin/pgtclsh/mkMakefile.tkdefs.sh
1193
+ bin/psql/Makefile
1192
1194
include/version.h
1193
1195
interfaces/libpq/Makefile
1194
1196
interfaces/ecpg/lib/Makefile
You can’t perform that action at this time.
0 commit comments