]> granicus.if.org Git - postgresql/blob - src/bin/Makefile
Rename irix5 port to irix.
[postgresql] / src / bin / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile for src/bin (client programs)
4 #
5 # Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
6 # Portions Copyright (c) 1994, Regents of the University of California
7 #
8 # $PostgreSQL: pgsql/src/bin/Makefile,v 1.43 2004/04/20 00:40:06 momjian Exp $
9 #
10 #-------------------------------------------------------------------------
11
12 subdir = src/bin
13 top_builddir = ../..
14 include $(top_builddir)/src/Makefile.global
15
16 DIRS := initdb initlocation ipcclean pg_ctl pg_dump \
17         psql scripts pg_config pg_controldata pg_resetxlog
18
19 all install installdirs uninstall depend distprep:
20         @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
21
22 clean distclean maintainer-clean:
23         -@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done