diff options
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/Makefile | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 9f5a9a94..1416a84c 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2002-05-01 Marcus Brinkmann <marcus@gnu.org> + + * Makefile (install): New target, same as install-headers. + 2002-03-10 Roland McGrath <roland@frob.com> * sys/procfs.h: New file, specifies ELF core file format details. diff --git a/include/Makefile b/include/Makefile index d56f640f..b923a1a2 100644 --- a/include/Makefile +++ b/include/Makefile @@ -28,7 +28,7 @@ LCLHDRS := $(patsubst $(srcdir)/%,%,$(wildcard $(srcdir)/*.h $(srcdir)/*/*.h)) include ../Makeconf -install-headers: $(installhdrs:%=$(includedir)/%) +install-headers install: $(installhdrs:%=$(includedir)/%) $(includedir)/%: $(srcdir)/% @$(MKINSTALLDIRS) $(@D) $(INSTALL_DATA) $< $@ |