diff options
author | Miles Bader <miles@gnu.org> | 1996-10-09 02:42:55 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-10-09 02:42:55 +0000 |
commit | 8af2303b131971f6a9d9f1706754d0db50f14a93 (patch) | |
tree | 1a03488cdf6357e23549039fc735b8d81cab92dc | |
parent | affe6a46c10b90932fabe0d527ec59cafe7a8ba7 (diff) |
($(includedir)/$(installhdrsubdir), $(installationdirlist)):
Suppress command echo (when mkinstalldirs actually does something, it
prints the resulting commands itself).
-rw-r--r-- | Makeconf | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -159,7 +159,7 @@ install: $(libdir) $(includedir)/$(installhdrsubdir) $(addprefix $(libdir)/,$(ta install-headers: $(includedir)/$(installhdrsubdir) $(addprefix $(includedir)/$(installhdrsubdir)/,$(installhdrs)) $(includedir)/$(installhdrsubdir): $(includedir) - $(MKINSTALLDIRS) $@ + @$(MKINSTALLDIRS) $@ # Arrange to have the headers installed locally anytime we build the library. # Not quite perfect, but at least it does end up getting done; and once done @@ -192,7 +192,7 @@ install-headers: # Making installation directories $(installationdirlist): %: - $(MKINSTALLDIRS) $@ + @$(MKINSTALLDIRS) $@ # Building the target ifeq ($(OBJS),) |