summaryrefslogtreecommitdiff
path: root/hurd/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'hurd/Makefile')
-rw-r--r--hurd/Makefile11
1 files changed, 7 insertions, 4 deletions
diff --git a/hurd/Makefile b/hurd/Makefile
index 392234be..d6e71075 100644
--- a/hurd/Makefile
+++ b/hurd/Makefile
@@ -19,13 +19,16 @@ dir := hurd
makemode := misc
hdrs = $(wildcard $(srcdir)/*.defs $(srcdir)/*.h)
-DIST_FILES = subsystems $(hdrs)
-LCLHDRS = hurd_types.h ioctl_types.h paths.h shared.h version.h
+DIST_FILES = subsystems $(notdir $(hdrs))
+
+INSTHDRS = hurd_types.h ioctl_types.h paths.h shared.h version.h
+ $(notdir $(wildcard $(srcdir)/*.defs))
include ../Makeconf
-# XXX not ideal
install-hdrs install: $(includedir)/hurd \
- $(patsubst $(srcdir)/%,$(includedir)/hurd/%,$(hdrs))
+ $(addprefix $(includedir)/hurd,$(INSTHDRS))
+
$(includedir)/hurd/%: $(srcdir)/%; $(INSTALL_DATA) $< $@
+
$(includedir)/hurd:;mkdir -p $@