Clean up gmake warning caused by recent NetBSD patch. <grumble>

This commit is contained in:
Tom Lane 2000-03-08 22:00:19 +00:00
parent 791bc6838d
commit baeafa91f3
1 changed files with 11 additions and 2 deletions

View File

@ -34,7 +34,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.44 2000/03/08 01:58:16 momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.45 2000/03/08 22:00:19 tgl Exp $
#
#-------------------------------------------------------------------------
@ -257,16 +257,25 @@ ifeq ($(PORTNAME), hpux)
$(HEADERDIR)/port/hpux/fixade.h
endif
$(BINDIR):
mkdir $@
$(LIBDIR):
mkdir $@
$(HEADERDIR):
mkdir $@
# TEMPLATEDIR is commonly the same as LIBDIR, but it might be different.
# We don't want duplicate rules if they are the same.
ifneq ($(TEMPLATEDIR),$(LIBDIR))
$(TEMPLATEDIR):
mkdir $@
endif
#############################################################################
#
# Support for code development.