mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-19 04:46:59 +08:00
from initdb again. Added two new commands, createlang and destroylang to bin. These hopefully end this damned mklang.sql discussion. Jan
37 lines
814 B
Makefile
37 lines
814 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile.inc--
|
|
# Makefile for src/bin (utility programs)
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.18 1999/05/20 16:49:59 wieck Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR= ..
|
|
include ../Makefile.global
|
|
|
|
DIRS = pg_id pg_version psql pg_dump pg_passwd cleardbdir createdb \
|
|
createlang createuser destroydb destroylang destroyuser initdb \
|
|
vacuumdb 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
|