48cfb668fc
specified in the top level Makefiles. Previously I missed dozens of Makefiles that skip the install after using `cmp -s' to decide that the install isn't necessary.
17 lines
350 B
Makefile
17 lines
350 B
Makefile
# $Id: Makefile,v 1.1 1994/11/08 00:47:02 ache 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>
|