Update for 0.98.
This commit is contained in:
parent
8e28ce97e5
commit
b531c55a9b
@ -6,7 +6,7 @@
|
|||||||
# Copyright (c) 1994, Regents of the University of California
|
# Copyright (c) 1994, Regents of the University of California
|
||||||
#
|
#
|
||||||
# IDENTIFICATION
|
# IDENTIFICATION
|
||||||
# $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile.in,v 1.1 1999/10/31 11:50:03 momjian Exp $
|
# $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile.in,v 1.2 1999/10/31 12:23:41 momjian Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -16,16 +16,20 @@ include $(SRCDIR)/Makefile.global
|
|||||||
all: pgaccess
|
all: pgaccess
|
||||||
|
|
||||||
pgaccess: pgaccess.sh
|
pgaccess: pgaccess.sh
|
||||||
sed -e 's/__wish__/@wish@/' \
|
sed -e 's;__wish__;@wish@;' pgaccess.sh | \
|
||||||
sed -e 's/__POSTGRESDIR__/$(POSTGRESDIR)/' \
|
sed -e 's;__POSTGRESDIR__;$(POSTGRESDIR);' \
|
||||||
pgaccess.sh > pgaccess
|
> pgaccess
|
||||||
|
|
||||||
install:
|
install:
|
||||||
$(INSTALL) $(INSTL_EXE_OPTS) pgaccess $(BINDIR)/pgaccess
|
$(INSTALL) $(INSTL_EXE_OPTS) pgaccess $(BINDIR)/pgaccess
|
||||||
|
@if [ ! -d $(POSTGRESDIR)/pgaccess ]; then mkdir $(POSTGRESDIR)/pgaccess; fi
|
||||||
$(INSTALL) $(INSTL_EXE_OPTS) main.tcl $(POSTGRESDIR)/pgaccess
|
$(INSTALL) $(INSTL_EXE_OPTS) main.tcl $(POSTGRESDIR)/pgaccess
|
||||||
$(INSTALL) $(INSTL_EXE_OPTS) lib/* $(POSTGRESDIR)/pgaccess/lib
|
@if [ ! -d $(POSTGRESDIR)/pgaccess/lib ]; then mkdir $(POSTGRESDIR)/pgaccess/lib; fi
|
||||||
# $(INSTALL) $(INSTL_EXE_OPTS) lib/help/* $(POSTGRESDIR)/pgaccess/lib/help
|
$(INSTALL) $(INSTLOPTS) lib/*.tcl $(POSTGRESDIR)/pgaccess/lib
|
||||||
# $(INSTALL) $(INSTL_EXE_OPTS) lib/languages/* $(POSTGRESDIR)/pgaccess/lib/languages
|
@if [ ! -d $(POSTGRESDIR)/pgaccess/lib/help ]; then mkdir $(POSTGRESDIR)/pgaccess/lib/help; fi
|
||||||
|
$(INSTALL) $(INSTLOPTS) lib/help/*.hlp $(POSTGRESDIR)/pgaccess/lib/help
|
||||||
|
@if [ ! -d $(POSTGRESDIR)/pgaccess/lib/languages ]; then mkdir $(POSTGRESDIR)/pgaccess/lib/languages; fi
|
||||||
|
$(INSTALL) $(INSTLOPTS) lib/languages/[a-z]* $(POSTGRESDIR)/pgaccess/lib/languages
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f pgaccess
|
rm -f pgaccess
|
||||||
|
@ -6,4 +6,4 @@ PGACCESS_HOME=__POSTGRESDIR__/pgaccess
|
|||||||
export PATH_TO_WISH
|
export PATH_TO_WISH
|
||||||
export PGACCESS_HOME
|
export PGACCESS_HOME
|
||||||
|
|
||||||
exec $(PATH_TO_WISH) $(PGACCESS_HOME)/main.tcl "$@"
|
exec $PATH_TO_WISH $PGACCESS_HOME/main.tcl "$@"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user