diff options
author | David Leonard <d@cvs.openbsd.org> | 1998-09-05 07:40:49 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1998-09-05 07:40:49 +0000 |
commit | d58a024513614202bc6448cd18096a33fefab632 (patch) | |
tree | 20ddbf54cc002f0b6519263c61ff525afbedd6fb /lib/libc_r/include/Makefile.inc | |
parent | a015b24948d7784a60fd2088998cd612658301c3 (diff) |
missed these too. sigh
Diffstat (limited to 'lib/libc_r/include/Makefile.inc')
-rw-r--r-- | lib/libc_r/include/Makefile.inc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/libc_r/include/Makefile.inc b/lib/libc_r/include/Makefile.inc new file mode 100644 index 00000000000..389952b97f1 --- /dev/null +++ b/lib/libc_r/include/Makefile.inc @@ -0,0 +1,12 @@ +# $OpenBSD: Makefile.inc,v 1.1 1998/09/05 07:40:47 d Exp $ + +includes: + @cd ${.CURDIR}/include; \ + for h in pthread.h pthread_np.h sched.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 + |