Remove the encoding *numbers* from the comments. They are useless, and
[PostgreSQL.git] / src / bin / Makefile
blobec824942338827780b2a03910685b8719b300d5e
1 #-------------------------------------------------------------------------
3 # Makefile for src/bin (client programs)
5 # Portions Copyright (c) 1996-2009, 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