freebsd-dev/gnu/include/Makefile
Andrey A. Chernov b817889f67 Add missing values.h (it isn't part of libg++ anymore) but it
accords ANSI standard, provides backward 1.x compatibility and
used in many applications.
1994-11-08 00:47:04 +00:00

17 lines
347 B
Makefile

# $Id: Makefile,v 1.19 1994/11/01 09:19:50 pst 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>