~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to src/bin/Makefile

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

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-2005, PostgreSQL Global Development Group
 
6
# Portions Copyright (c) 1994, Regents of the University of California
 
7
#
 
8
# $PostgreSQL: pgsql/src/bin/Makefile,v 1.46 2005-01-01 20:44:19 tgl Exp $
 
9
#
 
10
#-------------------------------------------------------------------------
 
11
 
 
12
subdir = src/bin
 
13
top_builddir = ../..
 
14
include $(top_builddir)/src/Makefile.global
 
15
 
 
16
DIRS := initdb ipcclean 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 depend distprep:
 
23
        @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
 
24
 
 
25
clean distclean maintainer-clean:
 
26
        -@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done