From 834e560c34a98ce743a2c998c2afaae38b8e4c32 Mon Sep 17 00:00:00 2001 From: bde Date: Thu, 21 Aug 1997 18:33:13 +0000 Subject: Fix and simplify installhdrs target. It didn't install the headers in ${HFILES} and it's simpler to install the non-headers in ${XFILES}. --- include/rpcsvc/Makefile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'include') diff --git a/include/rpcsvc/Makefile b/include/rpcsvc/Makefile index a9015e0..c1581e9 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.16 1997/05/28 16:26:05 wpaul Exp $ +# $Id: Makefile,v 1.17 1997/08/21 09:29:49 jmg Exp $ .SUFFIXES: .x @@ -20,17 +20,14 @@ CLEANFILES+= ${HDRS} all: ${HDRS} beforeinstall: installhdrs - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ - ${HFILES:S;^;${.CURDIR}/;} \ - ${XFILES:S;^;${.CURDIR}/;} \ - ${DESTDIR}/usr/include/rpcsvc installhdrs: - cd ${.OBJDIR}; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${HFILES:S;^;${.CURDIR}/;} \ + ${XFILES:S;^;${.CURDIR}/;} \ ${HDRS} \ ${DESTDIR}/usr/include/rpcsvc - + .x.h: ${RPCCOM} -h ${.IMPSRC} -o ${.TARGET} -- cgit v1.1