OSDN Git Service

pg_password utility. Cleanup for psql passwords. New datetime contrib stuff for...
[pg-rex/syncrep.git] / src / bin / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile.inc--
4 #    Makefile for src/bin (utility programs)
5 #
6 # Copyright (c) 1994, Regents of the University of California
7 #
8 #
9 # IDENTIFICATION
10 #    $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.8 1997/08/25 19:41:39 momjian Exp $
11 #
12 #-------------------------------------------------------------------------
13
14 #include ../Makefile.global
15
16 .DEFAULT all:
17 #
18 # C programs
19 #
20         $(MAKE) -C pg_id $@
21         $(MAKE) -C pg_version $@
22         $(MAKE) -C psql $@
23         $(MAKE) -C pg_dump $@
24       $(MAKE) -C pg_passwd $@
25 #
26 # Shell scripts
27
28         $(MAKE) -C cleardbdir $@
29         $(MAKE) -C createdb $@
30         $(MAKE) -C createuser $@
31         $(MAKE) -C destroydb $@
32         $(MAKE) -C destroyuser $@
33         $(MAKE) -C initdb $@
34 #
35 # TCL/TK programs
36 #
37 ifeq ($(USE_TCL), true)
38         $(MAKE) -C pgtclsh $@
39 endif