From 7e95ba029ed99ff5135ce8a0fbd9e0b2dc9d401e Mon Sep 17 00:00:00 2001 From: jmg Date: Thu, 21 Aug 1997 09:29:49 +0000 Subject: fix a problem with headers not being installed properly... basicly the installhdrs target was not being propagated to the subdirs... also fix rpcsvc's Makefile to have a installhdrs target to install the headers.. --- include/rpcsvc/Makefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'include/rpcsvc') diff --git a/include/rpcsvc/Makefile b/include/rpcsvc/Makefile index 60d427c..a9015e0 100644 --- a/include/rpcsvc/Makefile +++ b/include/rpcsvc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 2.3 88/08/11 4.0 RPCSRC -# $Id: Makefile,v 1.15 1997/05/28 04:38:13 wpaul Exp $ +# $Id: Makefile,v 1.16 1997/05/28 16:26:05 wpaul Exp $ .SUFFIXES: .x @@ -19,13 +19,18 @@ CLEANFILES+= ${HDRS} all: ${HDRS} -beforeinstall: +beforeinstall: installhdrs ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${HFILES:S;^;${.CURDIR}/;} \ ${XFILES:S;^;${.CURDIR}/;} \ - ${HDRS} \ ${DESTDIR}/usr/include/rpcsvc +installhdrs: + cd ${.OBJDIR}; \ + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${HDRS} \ + ${DESTDIR}/usr/include/rpcsvc + .x.h: ${RPCCOM} -h ${.IMPSRC} -o ${.TARGET} -- cgit v1.1