mirror of
https://github.com/postgres/postgres.git
synced 2026-02-15 08:37:56 -05:00
them into the scripts dir. I also added a --list option to show already
installed languages.
This whole moving and renaming totally confused CVS and my checked out
copy got completely fried last night. When you apply the source patch,
please make sure that all the directories src/bin/{create|destroy}* as
well as vacuumdb, cleardbdir are gone and that all the scripts (7) are
in
scripts/.
Meanwhile I am still puzzled about what happened with the docs patch.
Because I don't know what you got now, the second attachment contains
the
files
ref/allfiles.sgml
ref/commands.sgml
ref/createlang.sgml
ref/droplang.sgml
doc/src/sgml/Makefile
Peter Eisentraut Sernanders väg 10:115
35 lines
742 B
Makefile
35 lines
742 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile
|
|
# Makefile for src/bin (utility programs)
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.20 1999/12/05 20:02:43 momjian Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR= ..
|
|
include ../Makefile.global
|
|
|
|
DIRS = pg_id pg_version psql pg_dump pg_passwd cleardbdir \
|
|
scripts initdb initlocation ipcclean
|
|
|
|
ifdef MULTIBYTE
|
|
DIRS += pg_encoding
|
|
endif
|
|
|
|
#
|
|
# TCL/TK programs
|
|
#
|
|
ifeq ($(USE_TCL), true)
|
|
ifeq ($(USE_TK), true)
|
|
DIRS += pgaccess
|
|
endif
|
|
DIRS += pgtclsh
|
|
endif
|
|
|
|
.DEFAULT all:
|
|
for i in $(DIRS); do $(MAKE) -C $$i $@; done
|