mirror of https://github.com/postgres/postgres
parent
5b9d655ba7
commit
b19013cfb7
@ -1,21 +0,0 @@ |
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
# Makefile
|
||||
# Makefile for pgaccess
|
||||
#
|
||||
# Copyright (c) 1994, Regents of the University of California
|
||||
#
|
||||
# IDENTIFICATION
|
||||
# $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile,v 1.5 1999/10/30 21:21:50 momjian Exp $
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
SRCDIR= ../..
|
||||
include $(SRCDIR)/Makefile.global |
||||
|
||||
.PHONY: all clean |
||||
all clean: |
||||
|
||||
.PHONY: install |
||||
install: |
||||
$(INSTALL) $(INSTL_EXE_OPTS) pgaccess $(BINDIR)/pgaccess
|
@ -0,0 +1,31 @@ |
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
# Makefile
|
||||
# Makefile for pgaccess
|
||||
#
|
||||
# Copyright (c) 1994, Regents of the University of California
|
||||
#
|
||||
# IDENTIFICATION
|
||||
# $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile.in,v 1.1 1999/10/31 11:50:03 momjian Exp $
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
SRCDIR= ../..
|
||||
include $(SRCDIR)/Makefile.global |
||||
|
||||
all: pgaccess |
||||
|
||||
pgaccess: pgaccess.sh |
||||
sed -e 's/__wish__/@wish@/' \
|
||||
sed -e 's/__POSTGRESDIR__/$(POSTGRESDIR)/' \
|
||||
pgaccess.sh > pgaccess
|
||||
|
||||
install: |
||||
$(INSTALL) $(INSTL_EXE_OPTS) pgaccess $(BINDIR)/pgaccess
|
||||
$(INSTALL) $(INSTL_EXE_OPTS) main.tcl $(POSTGRESDIR)/pgaccess
|
||||
$(INSTALL) $(INSTL_EXE_OPTS) lib/* $(POSTGRESDIR)/pgaccess/lib
|
||||
# $(INSTALL) $(INSTL_EXE_OPTS) lib/help/* $(POSTGRESDIR)/pgaccess/lib/help
|
||||
# $(INSTALL) $(INSTL_EXE_OPTS) lib/languages/* $(POSTGRESDIR)/pgaccess/lib/languages
|
||||
|
||||
clean: |
||||
rm -f pgaccess
|
@ -1,10 +0,0 @@ |
||||
#!/bin/sh |
||||
|
||||
PATH_TO_WISH=/usr/bin/wish |
||||
PGACCESS_HOME=/usr/local/pgaccess |
||||
|
||||
export PATH_TO_WISH |
||||
export PGACCESS_HOME |
||||
|
||||
exec ${PATH_TO_WISH} ${PGACCESS_HOME}/main.tcl "$@" |
||||
|
@ -0,0 +1,9 @@ |
||||
#!/bin/sh |
||||
|
||||
PATH_TO_WISH= __wish__ |
||||
PGACCESS_HOME=__POSTGRESDIR__/pgaccess |
||||
|
||||
export PATH_TO_WISH |
||||
export PGACCESS_HOME |
||||
|
||||
exec $(PATH_TO_WISH) $(PGACCESS_HOME)/main.tcl "$@" |
Loading…
Reference in new issue