1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Automatic dependency tracking

The .DEFAULT rule in backend/Makefile is harmful -- removed.
Replace `::' rules by `:'.
This commit is contained in:
Peter Eisentraut
2000-07-16 14:50:44 +00:00
parent 81fd7532a9
commit 0d59dad770
10 changed files with 513 additions and 420 deletions

View File

@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.61 2000/07/14 15:30:56 thomas Exp $
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.62 2000/07/16 14:50:44 petere Exp $
#
#-------------------------------------------------------------------------
@@ -188,6 +188,3 @@ quick: $(OBJS)
depend dep: $(top_srcdir)/src/include/parser/parse.h $(top_builddir)/src/include/utils/fmgroids.h
for i in $(DIRS); do $(MAKE) -C $$i $@; done
.DEFAULT:
for i in $(DIRS); do $(MAKE) -C $$i $@; done