postgresql/src/bin/Makefile
Thomas G. Lockhart 75d5ce28ea Add initlocation.
1997-11-07 06:24:33 +00:00

42 lines
847 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.11 1997/11/07 06:24:33 thomas Exp $
#
#-------------------------------------------------------------------------
SRCDIR= ..
include ../Makefile.global
.DEFAULT all:
#
# C programs
#
$(MAKE) -C pg_id $@
$(MAKE) -C pg_version $@
$(MAKE) -C psql $@
$(MAKE) -C pg_dump $@
$(MAKE) -C pg_passwd $@
#
# Shell scripts
#
$(MAKE) -C cleardbdir $@
$(MAKE) -C createdb $@
$(MAKE) -C createuser $@
$(MAKE) -C destroydb $@
$(MAKE) -C destroyuser $@
$(MAKE) -C initdb $@
$(MAKE) -C initlocation $@
#
# TCL/TK programs
#
ifeq ($(USE_TCL), true)
$(MAKE) -C pgtclsh $@
endif