blob: efb5daf361a6dc866ce85e00194aa0410ae0209f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $Id: Makefile,v 1.1.6.2 1996/06/05 02:38:25 jkh Exp $
#
all depend lint tags:
FILES= values.h
NOOBJ= noobj
beforeinstall:
@${ECHO} installing ${FILES}
@-for i in ${FILES}; do \
cmp -s $$i ${DESTDIR}/usr/include/$$i || \
install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \
${DESTDIR}/usr/include/$$i; \
done
.include <bsd.prog.mk>
|