X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/blobdiff_plain/6e89d64690ecb042c8a9d0e2bcc33d383c7cc4e1..2c5d7f0d9c585d802fda462dedefa62250eeb73d:/usr/src/include/Makefile diff --git a/usr/src/include/Makefile b/usr/src/include/Makefile index 2a3536374e..270139160a 100644 --- a/usr/src/include/Makefile +++ b/usr/src/include/Makefile @@ -1,4 +1,4 @@ -# @(#)Makefile 5.34 (Berkeley) %G% +# @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91 # # Doing a make install builds /usr/include # @@ -7,24 +7,22 @@ # all clean cleandir depend lint tags: -SUBDIRS=arpa pascal protocols -STD= a.out.h ar.h assert.h bitstring.h ctype.h curses.h ndbm.h \ - dirent.h disktab.h fstab.h fts.h glob.h grp.h kvm.h limits.h \ - math.h memory.h mp.h netdb.h nlist.h paths.h pcc.h pwd.h ranlib.h \ - regexp.h resolv.h setjmp.h sgtty.h stab.h stdarg.h stddef.h \ - stdlib.h stdio.h string.h strings.h struct.h sysexits.h time.h \ - ttyent.h tzfile.h utmp.h varargs.h vfont.h vis.h -LMCH= float.h frame.h -LSYS= errno.h fcntl.h signal.h syslog.h termios.h unistd.h +# Missing: mp.h -DIRS= sys net netimp netinet netiso netns ufs nfs -.if (${MACHINE} == "hp300") -DIRS+= hp300 hpdev -.elif (${MACHINE} == "tahoe") -DIRS+= tahoe tahoemath tahoevba tahoeif -.elif (${MACHINE} == "vax") -DIRS+= vax vaxmba vaxuba vaxif -.endif +FILES= a.out.h ar.h assert.h bitstring.h ctype.h db.h dirent.h disktab.h \ + fstab.h fts.h glob.h grp.h kvm.h limits.h locale.h math.h memory.h \ + ndbm.h netdb.h nlist.h paths.h pwd.h ranlib.h regexp.h \ + resolv.h setjmp.h sgtty.h stab.h stdarg.h stddef.h stdio.h \ + stdlib.h string.h strings.h struct.h sysexits.h time.h ttyent.h \ + tzfile.h unistd.h utime.h utmp.h varargs.h vis.h + +MFILES= float.h frame.h +LFILES= errno.h fcntl.h signal.h syslog.h termios.h + +DIRS=arpa protocols +LDIRS= net netimp netinet netiso netns nfs sys ufs + +NOOBJ= noobj # Define SHARED to indicate whether you want symbolic links to the system # source (``symlinks''), or a separate copy (``copies''); (latter useful @@ -33,14 +31,14 @@ DIRS+= vax vaxmba vaxuba vaxif SHARED= symlinks install: ${SHARED} - @echo installing ${STD} - @-for i in ${STD}; do \ - cmp -s $$i ${DESTDIR}/usr/Xinclude/$$i || \ + @echo installing ${FILES} + @-for i in ${FILES}; do \ + cmp -s $$i ${DESTDIR}/usr/include/$$i || \ install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ ${DESTDIR}/usr/include/$$i; \ done - @echo installing ${SUBDIRS} - @-for i in ${SUBDIRS}; do \ + @echo installing ${DIRS} + @-for i in ${DIRS}; do \ if [ ! -d ${DESTDIR}/usr/include/$$i ]; \ then \ mkdir ${DESTDIR}/usr/include/$$i; \ @@ -48,38 +46,45 @@ install: ${SHARED} chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/$$i; \ chmod 755 ${DESTDIR}/usr/include/$$i; \ (cd $$i; for j in *.[ih]; do \ - cmp -s $$j ${DESTDIR}/usr/Xinclude/$$i/$$j || \ + cmp -s $$j ${DESTDIR}/usr/include/$$i/$$j || \ install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$j \ ${DESTDIR}/usr/include/$$i/$$j; \ done); \ done - install -c -o ${BINOWN} -g ${BINGRP} -m 444 Makefile.install \ - ${DESTDIR}/usr/include/Makefile - rm -f ${DESTDIR}/usr/include/machine - ln -s ./${MACHINE} ${DESTDIR}/usr/include/machine - @echo installing ${LSYS} - @-for i in ${LSYS}; do \ + @echo installing ${LFILES} + @-for i in ${LFILES}; do \ rm -f ${DESTDIR}/usr/include/$$i; \ ln -s sys/$$i ${DESTDIR}/usr/include/$$i; \ + chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/$$i; \ done - @echo installing ${LMCH} - @-for i in ${LMCH}; do \ + @echo installing ${MFILES} + @-for i in ${MFILES}; do \ rm -f ${DESTDIR}/usr/include/$$i; \ ln -s machine/$$i ${DESTDIR}/usr/include/$$i; \ + chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/$$i; \ done +copies: + @echo copies: ${LDIRS} + @-for i in ${LDIRS}; do \ rm -rf ${DESTDIR}/usr/include/$$i; \ - if [ ! -s ${DESTDIR}/usr/include/$$i ]; \ - then \ - ln -s /sys/$$i ${DESTDIR}/usr/include/$$i; \ - else \ - echo ${DESTDIR}/usr/include/$$i not removed; \ - fi; \ + cd /sys; \ + tar cf - $$i/*.h | (cd ${DESTDIR}/usr/include; tar xpfB -); \ done + rm -f ${DESTDIR}/usr/include/machine + mkdir ${DESTDIR}/usr/include/machine + cd /sys/${MACHINE}/include; \ + tar cf - *.h | (cd ${DESTDIR}/usr/include/machine; tar xpfB -); \ +symlinks: + @echo symlinks: ${LDIRS} + @for i in ${LDIRS}; do \ rm -rf ${DESTDIR}/usr/include/$$i; \ - cd /sys; \ - tar cf - $$i/*.h | (cd ${DESTDIR}/usr/include; tar xpfB -); \ + ln -s /sys/$$i ${DESTDIR}/usr/include/$$i; \ + chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/$$i; \ done + rm -f ${DESTDIR}/usr/include/machine + ln -s /sys/${MACHINE}/include ${DESTDIR}/usr/include/machine + chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/machine -.include +.include