Makefile 691 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
#-------------------------------------------------------------------------
#
# Makefile.inc--
#    Makefile for src/bin (utility programs)
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
Bruce Momjian's avatar
Bruce Momjian committed
10
#    $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.13 1998/04/06 03:23:01 momjian Exp $
11 12 13
#
#-------------------------------------------------------------------------

14 15
SRCDIR= ..
include ../Makefile.global
Marc G. Fournier's avatar
Marc G. Fournier committed
16

Bruce Momjian's avatar
Bruce Momjian committed
17 18
DIRS = pg_id pg_version psql pg_dump pg_passwd cleardbdir createdb \
	createuser destroydb destroyuser initdb initlocation ipcclean
Bruce Momjian's avatar
Hi,  
Bruce Momjian committed
19

Marc G. Fournier's avatar
Marc G. Fournier committed
20 21 22 23
#
# TCL/TK programs
#
ifeq ($(USE_TCL), true)
Bruce Momjian's avatar
Hi,  
Bruce Momjian committed
24
	DIRS += pgtclsh
Marc G. Fournier's avatar
Marc G. Fournier committed
25
endif
Bruce Momjian's avatar
Hi,  
Bruce Momjian committed
26 27 28

.DEFAULT all:
	for i in $(DIRS); do $(MAKE) -C $$i $@; done