blob: 4da28f90ddbee2f60cd62da5e99cca88cfb5203b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $OpenBSD: Makefile.inc,v 1.5 2003/01/20 18:12:11 marc Exp $
includes:
@cd ${SRCDIR}/include; \
for h in pthread.h pthread_np.h sched.h semaphore.h spinlock.h; do \
cmp -s $$h ${DESTDIR}/usr/include/$$h > /dev/null 2>&1 || \
(echo ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} \
-m 444 $$h ${DESTDIR}/usr/include; \
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
$$h ${DESTDIR}/usr/include) || exit 1; \
done
|