postgresql/src/bin/Makefile

32 lines
911 B
Makefile
Raw Normal View History

#-------------------------------------------------------------------------
#
# Makefile for src/bin (client programs)
#
2002-06-20 22:29:54 +02:00
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
2001-02-18 19:34:02 +01:00
# Portions Copyright (c) 1994, Regents of the University of California
#
2002-08-30 20:14:21 +02:00
# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.38 2002/08/30 18:14:21 momjian Exp $
#
#-------------------------------------------------------------------------
subdir = src/bin
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
DIRS := initdb initlocation ipcclean pg_ctl pg_dump pg_id \
2002-08-17 06:03:36 +02:00
psql scripts pg_config pg_controldata pg_resetxlog
ifdef MULTIBYTE
DIRS += pg_encoding
endif
ifeq ($(with_tcl), yes)
DIRS += pgtclsh
endif
all install installdirs uninstall depend distprep:
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
clean distclean maintainer-clean:
-@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done