[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/Makefile between version 1.6 and 1.7

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

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7