blob: 7ab3ffcca1efab3ece60488b96d754f6fb76c645 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#-------------------------------------------------------------------------
#
# Makefile.inc--
# Makefile for src/bin (utility programs)
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.11 1997/11/07 06:24:33 thomas Exp $
#
#-------------------------------------------------------------------------
SRCDIR= ..
include ../Makefile.global
.DEFAULT all:
#
# C programs
#
$(MAKE) -C pg_id $@
$(MAKE) -C pg_version $@
$(MAKE) -C psql $@
$(MAKE) -C pg_dump $@
$(MAKE) -C pg_passwd $@
#
# Shell scripts
#
$(MAKE) -C cleardbdir $@
$(MAKE) -C createdb $@
$(MAKE) -C createuser $@
$(MAKE) -C destroydb $@
$(MAKE) -C destroyuser $@
$(MAKE) -C initdb $@
$(MAKE) -C initlocation $@
#
# TCL/TK programs
#
ifeq ($(USE_TCL), true)
$(MAKE) -C pgtclsh $@
endif
|