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

@@ -23,19 +23,19 @@ TARGETS= $(SRC:%=%.tar.gz)
.PRECIOUS:
.PHONY: install all sources clean distclean
install::
install:
$(MAKE) all
(mv -f *.gz ..)
clean::
clean:
$(MAKE) -C sgml clean
distclean::
distclean:
$(MAKE) -C sgml distclean
all:: $(TARGETS)
all: $(TARGETS)
sources::
sources:
$(MAKE) sources.tar.gz
sources.tar: