mirror of
https://github.com/postgres/postgres.git
synced 2026-03-16 23:52:13 -04:00
36 lines
733 B
Makefile
36 lines
733 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile
|
|
# Makefile for src/bin (client programs)
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.24 2000/01/19 20:08:23 petere Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR= ..
|
|
include ../Makefile.global
|
|
|
|
DIRS = pg_version psql pg_dump pg_passwd \
|
|
scripts initdb initlocation ipcclean \
|
|
pg_ctl
|
|
|
|
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
|