File tree Expand file tree Collapse file tree 6 files changed +44
-32
lines changed
Expand file tree Collapse file tree 6 files changed +44
-32
lines changed Original file line number Diff line number Diff line change 77#
88#
99# IDENTIFICATION
10- # $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.44 1999/10/12 14:46:26 momjian Exp $
10+ # $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.45 1999/10/31 11:50:02 momjian Exp $
1111#
1212#-------------------------------------------------------------------------
1313
@@ -91,6 +91,7 @@ distclean: clean
9191 backend/utils/Gen_fmgrtab.sh \
9292 bin/pg_dump/Makefile \
9393 bin/pg_version/Makefile \
94+ bin/pgaccess/Makefile \
9495 bin/psql/Makefile \
9596 bin/pgtclsh/mkMakefile.tcldefs.sh \
9697 bin/pgtclsh/mkMakefile.tkdefs.sh \
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.1 1999/10/31 11:50:03 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@/' \
20+ sed -e ' s/__POSTGRESDIR__/$(POSTGRESDIR)/' \
21+ pgaccess.sh > pgaccess
22+
23+ install :
24+ $(INSTALL ) $(INSTL_EXE_OPTS ) pgaccess $(BINDIR ) /pgaccess
25+ $(INSTALL ) $(INSTL_EXE_OPTS ) main.tcl $(POSTGRESDIR ) /pgaccess
26+ $(INSTALL ) $(INSTL_EXE_OPTS ) lib/* $(POSTGRESDIR ) /pgaccess/lib
27+ # $(INSTALL) $(INSTL_EXE_OPTS) lib/help/* $(POSTGRESDIR)/pgaccess/lib/help
28+ # $(INSTALL) $(INSTL_EXE_OPTS) lib/languages/* $(POSTGRESDIR)/pgaccess/lib/languages
29+
30+ clean :
31+ 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 @@ -1120,6 +1120,7 @@ then
11201120 else
11211121 AC_MSG_RESULT($TK_CONFIG_SH)
11221122 AC_SUBST(TK_CONFIG_SH)
1123+ AC_PATH_PROG(wish, wish)
11231124 fi
11241125fi
11251126
@@ -1213,6 +1214,7 @@ AC_OUTPUT(
12131214 backend/utils/Gen_fmgrtab.sh
12141215 bin/pg_dump/Makefile
12151216 bin/pg_version/Makefile
1217+ bin/pgaccess/Makefile
12161218 bin/psql/Makefile
12171219 bin/pgtclsh/mkMakefile.tcldefs.sh
12181220 bin/pgtclsh/mkMakefile.tkdefs.sh
You can’t perform that action at this time.
0 commit comments