aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1997-08-21 18:33:13 +0000
committerBruce Evans <bde@FreeBSD.org>1997-08-21 18:33:13 +0000
commit41b55134037cf148881b9642e1c1a1bfb097fb05 (patch)
treeab9639bad95aa7778aef28bc0c1a3419016b55de /include
parente47c8739d5064838bbfe25bedc9f533d89c05d1d (diff)
downloadsrc-41b55134037cf148881b9642e1c1a1bfb097fb05.tar.gz
src-41b55134037cf148881b9642e1c1a1bfb097fb05.zip
Fix and simplify installhdrs target. It didn't install the headers in
${HFILES} and it's simpler to install the non-headers in ${XFILES}.
Notes
Notes: svn path=/head/; revision=28542
Diffstat (limited to 'include')
-rw-r--r--include/rpcsvc/Makefile11
1 files changed, 4 insertions, 7 deletions
diff --git a/include/rpcsvc/Makefile b/include/rpcsvc/Makefile
index a9015e0499aa..c1581e932c15 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}