freebsd-dev/gnu/include/Makefile
Bruce Evans 48cfb668fc Change install' to ${INSTALL}' so that default install flags can be
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.
1995-08-06 12:24:38 +00:00

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>