1996-07-09 02:22:35 -04:00
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
2000-06-26 20:32:06 -04:00
|
|
|
# Makefile for src/bin (client programs)
|
1996-07-09 02:22:35 -04:00
|
|
|
#
|
2007-01-05 17:20:05 -05:00
|
|
|
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
2001-02-18 13:34:02 -05:00
|
|
|
# Portions Copyright (c) 1994, Regents of the University of California
|
1996-07-09 02:22:35 -04:00
|
|
|
#
|
2007-02-09 10:56:00 -05:00
|
|
|
# $PostgreSQL: pgsql/src/bin/Makefile,v 1.50 2007/02/09 15:55:59 petere Exp $
|
1996-07-09 02:22:35 -04:00
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
|
2000-06-26 20:32:06 -04:00
|
|
|
subdir = src/bin
|
|
|
|
|
top_builddir = ../..
|
2000-08-31 12:12:35 -04:00
|
|
|
include $(top_builddir)/src/Makefile.global
|
1996-07-22 23:03:43 -04:00
|
|
|
|
2007-02-09 10:56:00 -05:00
|
|
|
DIRS = initdb ipcclean pg_ctl pg_dump \
|
2004-04-19 20:40:06 -04:00
|
|
|
psql scripts pg_config pg_controldata pg_resetxlog
|
2004-06-19 21:32:49 -04:00
|
|
|
ifeq ($(PORTNAME), win32)
|
|
|
|
|
DIRS+=pgevent
|
|
|
|
|
endif
|
1998-07-23 23:32:46 -04:00
|
|
|
|
2007-01-20 12:16:17 -05:00
|
|
|
all install installdirs uninstall distprep:
|
2000-07-19 12:30:27 -04:00
|
|
|
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
|
2000-06-26 20:32:06 -04:00
|
|
|
|
2000-07-01 11:02:31 -04:00
|
|
|
clean distclean maintainer-clean:
|
|
|
|
|
-@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done
|