Makefile 695 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
10
#    $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.3 1996/07/25 06:54:26 scrappy Exp $
11 12 13
#
#-------------------------------------------------------------------------

Marc G. Fournier's avatar
Marc G. Fournier committed
14 15 16
MKDIR=../mk
-include $(MKDIR)/../Makefile.global

17 18 19
#
# C programs
#
20
SUBDIR=  pg_id pg_version psql pg_dump
21 22 23

#
# Shell scripts
Marc G. Fournier's avatar
Marc G. Fournier committed
24
# 
25 26
SUBDIR+= cleardbdir createdb createuser destroydb destroyuser initdb 

Marc G. Fournier's avatar
Marc G. Fournier committed
27 28 29 30 31 32
#
# TCL/TK programs
#
ifeq ($(USE_TCL), true)
SUBDIR += pgtclsh
endif
33

Marc G. Fournier's avatar
Marc G. Fournier committed
34
include $(MKDIR)/postgres.subdir.mk
35