diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2002-05-01 03:01:41 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2002-05-01 03:01:41 +0000 |
commit | eaaacfaf0ed23ba55cfe84bb545703a4ff06dfa9 (patch) | |
tree | e538ecce84f9bc8fc0ca8214c449b90b65b6b248 | |
parent | d74586f4e6d0688dfce0b662df60ee443c1cb91e (diff) |
2002-05-01 Marcus Brinkmann <marcus@gnu.org>
* Makefile (install): New target, same as install-headers.
-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) $< $@ |