diff options
Diffstat (limited to 'include/Makefile')
-rw-r--r-- | include/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/include/Makefile b/include/Makefile index f4113d99..d56f640f 100644 --- a/include/Makefile +++ b/include/Makefile @@ -1,5 +1,6 @@ -# -# Copyright (C) 1996 Free Software Foundation, Inc. +# Makefile for include subdirectory. +# +# Copyright (C) 1996,2002 Free Software Foundation, Inc. # Written by Michael I. Bushnell, p/BSG. # # This file is part of the GNU Hurd. @@ -21,7 +22,13 @@ dir := include makemode := misc -DIST_FILES = $(notdir $(wildcard $(srcdir)/*.h)) +installhdrs := sys/procfs.h + +LCLHDRS := $(patsubst $(srcdir)/%,%,$(wildcard $(srcdir)/*.h $(srcdir)/*/*.h)) include ../Makeconf +install-headers: $(installhdrs:%=$(includedir)/%) +$(includedir)/%: $(srcdir)/% + @$(MKINSTALLDIRS) $(@D) + $(INSTALL_DATA) $< $@ |