=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/include/Makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -c -r1.6 -r1.7 *** src/include/Makefile 1996/05/01 13:09:10 1.6 --- src/include/Makefile 1996/05/06 21:44:19 1.7 *************** *** 1,3 **** --- 1,4 ---- + # $OpenBSD: Makefile,v 1.7 1996/05/06 21:44:19 deraadt Exp $ # $NetBSD: Makefile,v 1.57 1996/04/25 00:55:44 jtc Exp $ # @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91 *************** *** 20,30 **** MFILES= float.h frame.h stdarg.h varargs.h LFILES= errno.h fcntl.h syslog.h termios.h - CFILES= curses.h DIRS= arpa protocols rpc rpcsvc LDIRS= dev net netinet netccitt netiso netns nfs sys ufs vm ddb NOOBJ= noobj # Change SYS_INCLUDE in bsd.own.mk to "symlinks" if you don't want copies --- 21,32 ---- MFILES= float.h frame.h stdarg.h varargs.h LFILES= errno.h fcntl.h syslog.h termios.h DIRS= arpa protocols rpc rpcsvc LDIRS= dev net netinet netccitt netiso netns nfs sys ufs vm ddb + RDIRS= ../lib/libcurses ../lib/librpcsvc ../lib/libpcap + NOOBJ= noobj # Change SYS_INCLUDE in bsd.own.mk to "symlinks" if you don't want copies *************** *** 56,72 **** rm -f ${DESTDIR}/usr/include/$$i; \ ln -s machine/$$i ${DESTDIR}/usr/include/$$i; \ done - @echo installing ${CFILES} - @-for i in ${CFILES}; do \ - cmp -s ../lib/libcurses/$$i ${DESTDIR}/usr/include/$$i || \ - install -c -m 444 ../lib/libcurses/$$i \ - ${DESTDIR}/usr/include/$$i; \ - done chown -R ${BINOWN}:${BINGRP} ${DESTDIR}/usr/include find ${DESTDIR}/usr/include -type f | \ xargs chmod a=r find ${DESTDIR}/usr/include -type d | \ xargs chmod u=rwx,go=rx copies: @echo copies: ${LDIRS} --- 58,72 ---- rm -f ${DESTDIR}/usr/include/$$i; \ ln -s machine/$$i ${DESTDIR}/usr/include/$$i; \ done chown -R ${BINOWN}:${BINGRP} ${DESTDIR}/usr/include find ${DESTDIR}/usr/include -type f | \ xargs chmod a=r find ${DESTDIR}/usr/include -type d | \ xargs chmod u=rwx,go=rx + @-for i in ${RDIRS}; do \ + echo installing in ${.CURDIR}/$$i; \ + (cd ${.CURDIR}/$$i; ${MAKE} includes) \ + done copies: @echo copies: ${LDIRS}