File tree Expand file tree Collapse file tree 1 file changed +12
-15
lines changed Expand file tree Collapse file tree 1 file changed +12
-15
lines changed Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/Makefile,v 1.3.2.1 1996/08/19 18:35:17 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/Makefile,v 1.3.2.2 1996/08/20 04:10:35 scrappy Exp $
11
11
#
12
12
# NOTES
13
13
# objdir - location of the objects and generated files (eg. obj)
17
17
MKDIR =./mk
18
18
-include $(MKDIR ) /../Makefile.global
19
19
20
- SUBDIR = backend libpq
21
-
22
- ifeq ($(USE_TCL ) , true)
23
- SUBDIR += libpgtcl
24
- endif
25
-
26
- SUBDIR+ = bin
27
-
28
- DOC = $(shell ls -ld ../doc)
29
- ifeq ($(DOC ) , ../doc)
30
- SUBDIR+ = ../doc
31
- endif
32
-
33
20
FIND = find
34
21
# assuming gnu tar and split here
35
22
TAR = tar
@@ -38,7 +25,17 @@ SPLIT = split
38
25
ETAGS = etags
39
26
XARGS = xargs
40
27
41
- include mk/postgres.subdir.mk
28
+ .DEFAULT all :
29
+ $(MAKE ) -C backend $@
30
+ $(MAKE ) -C libpq $@
31
+ ifeq ($(USE_TCL ) , true)
32
+ $(MAKE) -C libpgtcl $@
33
+ endif
34
+ $(MAKE) -C bin $@
35
+ ifeq (../doc, $(wildcard ../doc) )
36
+ $(MAKE) -C ../doc $@
37
+ endif
38
+ @echo All of Postgres95 is successfully made. Ready to install.
42
39
43
40
TAGS :
44
41
rm -f TAGS; \
You can’t perform that action at this time.
0 commit comments