Add $Id$'s
[unix-history] / include / Makefile
index b9b43b6..e6ff93f 100644 (file)
@@ -1,24 +1,27 @@
 #      @(#)Makefile    5.45.1.1 (Berkeley) 5/6/91
 #
 #      @(#)Makefile    5.45.1.1 (Berkeley) 5/6/91
 #
- The ``rm -rf''s used below are safe because rm doesn't follow symbolic
+# The ``rm -rf''s used below are safe because rm doesn't follow symbolic
 # links.
 #
 # links.
 #
-all clean cleandir depend lint tags:
+all depend lint tags:
+
+SUBDIR=        rpcsvc
 
 # Missing: mp.h
 
 FILES= a.out.h ar.h assert.h bitstring.h ctype.h db.h dirent.h disktab.h \
 
 # Missing: mp.h
 
 FILES= a.out.h ar.h assert.h bitstring.h ctype.h db.h dirent.h disktab.h \
-       err.h fnmatch.h fstab.h fts.h glob.h grp.h kvm.h limits.h locale.h \
-       math.h memory.h mpool.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
+       err.h f2c.h fnmatch.h fstab.h fts.h glob.h grp.h kvm.h limits.h \
+       link.h locale.h math.h memory.h mpool.h ndbm.h netdb.h nlist.h \
+       paths.h pwd.h queue.h ranlib.h regex.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
+MFILES=        float.h floatingpoint.h frame.h
 LFILES=        errno.h fcntl.h signal.h syslog.h syscall.h termios.h
 
 DIRS=arpa protocols
 LFILES=        errno.h fcntl.h signal.h syslog.h syscall.h termios.h
 
 DIRS=arpa protocols
-LDIRS= net netccitt netinet netiso netns nfs sys ufs vm
+LDIRS= net netccitt netinet netiso netns nfs scsi sys ufs vm
 # removed netimp depricated?
 
 NOOBJ= noobj
 # removed netimp depricated?
 
 NOOBJ= noobj
@@ -27,9 +30,9 @@ NOOBJ=        noobj
 # source (``symlinks''), or a separate copy (``copies''); (latter useful
 # in environments where it's not possible to keep /sys publicly readable)
 # SHARED=      copies
 # source (``symlinks''), or a separate copy (``copies''); (latter useful
 # in environments where it's not possible to keep /sys publicly readable)
 # SHARED=      copies
-SHARED       symlinks
+SHARED?=       symlinks
 
 
-install: ${SHARED}
+realinstall: ${SHARED}
        @echo installing ${FILES}
        @-for i in ${FILES}; do \
                cmp -s $$i ${DESTDIR}/usr/include/$$i || \
        @echo installing ${FILES}
        @-for i in ${FILES}; do \
                cmp -s $$i ${DESTDIR}/usr/include/$$i || \
@@ -69,11 +72,17 @@ copies:
                rm -rf ${DESTDIR}/usr/include/$$i; \
                cd /sys; \
                tar cf - $$i/*.h | (cd ${DESTDIR}/usr/include; tar xpfB -); \
                rm -rf ${DESTDIR}/usr/include/$$i; \
                cd /sys; \
                tar cf - $$i/*.h | (cd ${DESTDIR}/usr/include; tar xpfB -); \
+               chown -R ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/$$i; \
+               chmod -R 444 ${DESTDIR}/usr/include/$$i; \
+               chmod 755 ${DESTDIR}/usr/include/$$i; \
        done
        done
-       rm -f ${DESTDIR}/usr/include/machine
+       rm -rf ${DESTDIR}/usr/include/machine
        mkdir ${DESTDIR}/usr/include/machine
        cd /sys/${MACHINE}/include; \
        mkdir ${DESTDIR}/usr/include/machine
        cd /sys/${MACHINE}/include; \
-       tar cf - *.h | (cd ${DESTDIR}/usr/include/machine; tar xpfB -); \
+       tar cf - *.h | (cd ${DESTDIR}/usr/include/machine; tar xpfB -);
+       chown -R ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/machine;
+       chmod -R 444 ${DESTDIR}/usr/include/machine;
+       chmod 755 ${DESTDIR}/usr/include/machine;
 
 symlinks:
        @echo symlinks: ${LDIRS}
 
 symlinks:
        @echo symlinks: ${LDIRS}
@@ -82,7 +91,7 @@ symlinks:
                ln -s /sys/$$i ${DESTDIR}/usr/include/$$i; \
                chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/$$i; \
        done
                ln -s /sys/$$i ${DESTDIR}/usr/include/$$i; \
                chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/$$i; \
        done
-       rm -f ${DESTDIR}/usr/include/machine
+       rm -rf ${DESTDIR}/usr/include/machine
        ln -s /sys/${MACHINE}/include ${DESTDIR}/usr/include/machine
        chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/machine
 
        ln -s /sys/${MACHINE}/include ${DESTDIR}/usr/include/machine
        chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/machine