Makefile 809 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.9 1997/08/25 19:59:52 momjian Exp $
11 12 13
#
#-------------------------------------------------------------------------

14
#include ../Makefile.global
Marc G. Fournier's avatar
Marc G. Fournier committed
15

16
.DEFAULT all:
17 18 19
#
# C programs
#
20 21 22 23
	$(MAKE) -C pg_id $@
	$(MAKE) -C pg_version $@
	$(MAKE) -C psql $@
	$(MAKE) -C pg_dump $@
Bruce Momjian's avatar
Bruce Momjian committed
24
	$(MAKE) -C pg_passwd $@
25 26
#
# Shell scripts
Marc G. Fournier's avatar
Marc G. Fournier committed
27
# 
28 29 30 31 32 33
	$(MAKE) -C cleardbdir $@
	$(MAKE) -C createdb $@
	$(MAKE) -C createuser $@
	$(MAKE) -C destroydb $@
	$(MAKE) -C destroyuser $@
	$(MAKE) -C initdb $@
Marc G. Fournier's avatar
Marc G. Fournier committed
34 35 36 37
#
# TCL/TK programs
#
ifeq ($(USE_TCL), true)
38
	$(MAKE) -C pgtclsh $@
Marc G. Fournier's avatar
Marc G. Fournier committed
39
endif