Make the doc directory a conditional...only try to "compile" if it

actually exists...
This commit is contained in:
Marc G. Fournier 1996-08-19 18:35:17 +00:00
parent 0b62293b71
commit d0f8a6c4e8

View File

@ -7,7 +7,7 @@
# #
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Makefile,v 1.3 1996/08/01 19:46:46 scrappy Exp $ # $Header: /cvsroot/pgsql/src/Makefile,v 1.3.2.1 1996/08/19 18:35:17 scrappy Exp $
# #
# NOTES # NOTES
# objdir - location of the objects and generated files (eg. obj) # objdir - location of the objects and generated files (eg. obj)
@ -23,7 +23,12 @@ ifeq ($(USE_TCL), true)
SUBDIR += libpgtcl SUBDIR += libpgtcl
endif endif
SUBDIR+= bin ../doc SUBDIR+= bin
DOC= $(shell ls -ld ../doc)
ifeq ($(DOC), ../doc)
SUBDIR+= ../doc
endif
FIND = find FIND = find
# assuming gnu tar and split here # assuming gnu tar and split here