From: Thomas Bushnell, BSG Date: Thu, 26 Sep 1996 17:48:09 +0000 (+0000) Subject: Thu Sep 26 13:44:29 1996 Thomas Bushnell, n/BSG X-Git-Tag: cvs/libc-960927~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=082091495289101dd4da424fef283c311b1b39d3;p=thirdparty%2Fglibc.git Thu Sep 26 13:44:29 1996 Thomas Bushnell, n/BSG * hurd/Makefile (installed-sunrpc-headers): New variable. (sunrpc-headers): New variable. (install-headers-nosubir): Depend on $(installed-sunrpc-headers), not just . ($(installed-sunrpc-headers)): Provide rule for all of these. --- diff --git a/hurd/Makefile b/hurd/Makefile index bb63065383c..e046a7db260 100644 --- a/hurd/Makefile +++ b/hurd/Makefile @@ -68,12 +68,15 @@ distribute += hurdmalloc.h include ../mach/Machrules include ../Rules -# XXX sunrpc doesn't build yet for Hurd, but one of its headers is +# XXX sunrpc doesn't build yet for Hurd, but its headers are # crucial nontheless. So sysdeps/mach/hurd/Makefile elides sunrpc -# from $(subdirs), and this rule arranges for the header in question +# from $(subdirs), and this rule arranges for the headers in question # to get installed. -install-headers-nosubdir: $(includedir)/rpc/netdb.h -$(includedir)/rpc/netdb.h: $(..)sunrpc/rpc/netdb.h +sunrpc-headers = netdb.h pmap_prot.h xdr.h types.h auth.h \ + rpc_msg.h auth_unix.h +installed-sunrpc-headers = $(addprefix $(includedir)/rpc/,$(sunrpc-headers)) +install-headers-nosubdir: $(installed-sunrpc-headers) +$(installed-sunrpc-headers): $(includedir)/%: $(..)sunrpc/% $(do-install)