From 131ce3a37dc93eaa62f3b7643772afa9276ed2d5 Mon Sep 17 00:00:00 2001 From: "Alfred M. Szmidt" Date: Sat, 22 Sep 2012 23:49:31 +0200 Subject: Install .msgids files to datadir. * Makefile (MSGIDS): New variable. (all, install-msgids, $(datadir)/msgids): New targets. (install): Specify install-header and install-msgids as prerequisites. --- hurd/Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'hurd') diff --git a/hurd/Makefile b/hurd/Makefile index 1cc14fa7..4273ff3d 100644 --- a/hurd/Makefile +++ b/hurd/Makefile @@ -21,15 +21,20 @@ hdrs = $(wildcard $(srcdir)/*.defs $(srcdir)/*.h) INSTHDRS = hurd_types.h version.h ioctl_types.h paths.h shared.h console.h \ $(notdir $(wildcard $(srcdir)/*.defs)) +MSGIDS := hurd.msgids $(patsubst %.defs,%.msgids,$(filter %.defs,$(INSTHDRS))) include ../Makeconf -install-headers install: $(includedir)/hurd \ +all: $(MSGIDS) + +install: install-msgids install-headers +install-headers: $(includedir)/hurd \ $(addprefix $(includedir)/hurd/,$(INSTHDRS)) +install-msgids: $(MSGIDS) $(datadir)/msgids; $(INSTALL_DATA) $^ $(includedir)/hurd/%: $(srcdir)/%; $(INSTALL_DATA) $< $@ -$(includedir)/hurd:;mkdir -p $@ +$(datadir)/msgids $(includedir)/hurd:;mkdir -p $@ %.msgids: $(srcdir)/%.defs if grep -q '^subsystem' $<; \ -- cgit v1.2.3