blob: 93644e3af574c3aa54aa191c7ca7706dc2dbb2a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $OpenBSD: Makefile,v 1.4 2000/02/19 12:10:27 hin Exp $
LIB= com_err
SRCS= com_err.c error.c
CFLAGS+=-I${.CURDIR}
MAN= com_err.3
includes:
-cd ${.CURDIR}; cmp -s com_err.h ${DESTDIR}/usr/include/com_err.h > \
/dev/null 2>&1 || \
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 com_err.h \
${DESTDIR}/usr/include/com_err.h
.include <bsd.lib.mk>
|