summaryrefslogtreecommitdiff
path: root/lib/libpthread/include/Makefile.inc
blob: b8fd2151c2e553735c8322ba69fff7e994c7a1b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# $OpenBSD: Makefile.inc,v 1.6 2013/06/02 22:03:12 tedu Exp $

includes:
	@cd ${SRCDIR}/include; \
	 for h in pthread.h pthread_np.h sched.h semaphore.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