Commit fb9448de authored by Tom Lane's avatar Tom Lane

Tweak make rules for parse.h and fmgr.h to avoid bug in old

versions of gmake.
parent 103022c3
......@@ -34,7 +34,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.38 1999/03/07 23:05:56 tgl Exp $
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.39 1999/11/14 17:12:42 tgl Exp $
#
#-------------------------------------------------------------------------
......@@ -116,13 +116,17 @@ postgres.o: $(OBJS)
# make files in our subdirectories.
parse.h: parser/parse.h
$(MAKE) -C parser parse.h
cp parser/parse.h .
fmgr.h:
$(MAKE) -C utils fmgr.h
parser/parse.h:
$(MAKE) -C parser parse.h
fmgr.h: utils/fmgr.h
cp utils/fmgr.h .
utils/fmgr.h:
$(MAKE) -C utils fmgr.h
#############################################################################
clean:
rm -f postgres$(X) $(POSTGRES_IMP) fmgr.h parse.h \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment