~ubuntu-branches/ubuntu/hardy/postgresql-8.4/hardy-backports

« back to all changes in this revision

Viewing changes to src/bin/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-20 12:00:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090320120013-hogj7egc5mjncc5g
Tags: upstream-8.4~0cvs20090328
ImportĀ upstreamĀ versionĀ 8.4~0cvs20090328

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#-------------------------------------------------------------------------
 
2
#
 
3
# Makefile for src/bin (client programs)
 
4
#
 
5
# Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
 
6
# Portions Copyright (c) 1994, Regents of the University of California
 
7
#
 
8
# $PostgreSQL$
 
9
#
 
10
#-------------------------------------------------------------------------
 
11
 
 
12
subdir = src/bin
 
13
top_builddir = ../..
 
14
include $(top_builddir)/src/Makefile.global
 
15
 
 
16
DIRS = initdb pg_ctl pg_dump \
 
17
        psql scripts pg_config pg_controldata pg_resetxlog
 
18
ifeq ($(PORTNAME), win32)
 
19
DIRS+=pgevent
 
20
endif
 
21
 
 
22
all install installdirs uninstall distprep clean distclean maintainer-clean:
 
23
        @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done