blob: 1079d5cd2b4dcf44459edf2d1cc5442226a0c4c8 (
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
|
#-------------------------------------------------------------------------
#
# 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.4 1996/08/13 07:48:15 scrappy Exp $
#
#-------------------------------------------------------------------------
MKDIR=../mk
-include $(MKDIR)/../Makefile.global
.DEFAULT all:
#
# C programs
#
$(MAKE) -C pg_id $@
$(MAKE) -C pg_version $@
$(MAKE) -C psql $@
$(MAKE) -C pg_dump $@
#
# Shell scripts
#
$(MAKE) -C cleardbdir $@
$(MAKE) -C createdb $@
$(MAKE) -C createuser $@
$(MAKE) -C destroydb $@
$(MAKE) -C destroyuser $@
$(MAKE) -C initdb $@
#
# TCL/TK programs
#
ifeq ($(USE_TCL), true)
$(MAKE) -C pgtclsh $@
endif
|