Properly access a buffer's LSN using existing access macros instead of abusing
[PostgreSQL.git] / src / bin / Makefile
blob6451f8f18e90afa91c7534aaf7184696a3fe7ffc
1 #-------------------------------------------------------------------------
3 # Makefile for src/bin (client programs)
5 # Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
6 # Portions Copyright (c) 1994, Regents of the University of California
8 # $PostgreSQL$
10 #-------------------------------------------------------------------------
12 subdir = src/bin
13 top_builddir = ../..
14 include $(top_builddir)/src/Makefile.global
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
22 all install installdirs uninstall distprep clean distclean maintainer-clean:
23 @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done