diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-07-17 18:30:27 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-07-17 18:30:27 +0000 |
commit | 66e9ca205732d9d35ac3b229608ed23e9bee91e5 (patch) | |
tree | 624a7716dc8734a4511c99aa5aedabef60f0fae5 | |
parent | 93c1c3d1c54f0b72d861dbc298a3d1ecaab60c08 (diff) |
gs/install-hdrs/install-headers/g
-rw-r--r-- | Makeconf | 4 | ||||
-rw-r--r-- | Makefile | 7 | ||||
-rw-r--r-- | hurd/Makefile | 2 |
3 files changed, 7 insertions, 6 deletions
@@ -147,7 +147,7 @@ install libs: add-to-librecord add-to-librecord: $(targets) install: $(addprefix $(libdir)/,$(targets)) $(addprefix $(includedir)/$(installhdrsubdir)/,$(installhdrs)) $(libdir) $(includedir) -install-hdrs:$(addprefix $(includedir)/$(installhdrsubdir)/,$(installhdrs)) $(includedir) +install-headers:$(addprefix $(includedir)/$(installhdrsubdir)/,$(installhdrs)) $(includedir) # 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 @@ -176,7 +176,7 @@ endif # Provide default. install: -install-hdrs: +install-headers: # Making installation directories $(installationdirlist): %: @@ -59,8 +59,8 @@ all: $(addsuffix -all,$(lib-subdirs) $(working-prog-subdirs)) %-install: $(MAKE) -C $* install -%-install-hdrs: - $(MAKE) -C $* install-hdrs +%-install-headers: + $(MAKE) -C $* install-headers %-TAGS: $(MAKE) -C $* TAGS no_deps=t @@ -81,7 +81,8 @@ relink: $(addsuffix -relink,$(prog-subdirs)) install: $(addsuffix -install,$(lib-subdirs) $(working-prog-subdirs) \ $(other-subdirs)) -install-hdrs: $(addsuffix -install-hdrs,$(lib-subdirs) $(working-prog-subdirs)\ +install-headers: $(addsuffix -install-headers,$(lib-subdirs) \ + $(working-prog-subdirs)\ $(other-subdirs)) lndist: cp-linked-files diff --git a/hurd/Makefile b/hurd/Makefile index 2d61eeed..37ccddb4 100644 --- a/hurd/Makefile +++ b/hurd/Makefile @@ -26,7 +26,7 @@ INSTHDRS = hurd_types.h ioctl_types.h paths.h shared.h version.h \ include ../Makeconf -install-hdrs install: $(includedir)/hurd \ +install-headers install: $(includedir)/hurd \ $(addprefix $(includedir)/hurd/,$(INSTHDRS)) $(includedir)/hurd/%: $(srcdir)/%; $(INSTALL_DATA) $< $@ |