This commit was manufactured by cvs2svn to create tag 'FreeBSD-release/1.0'.
[unix-history] / include / Makefile
index b854a00..eb10d2f 100644 (file)
@@ -1,33 +1,27 @@
 #      @(#)Makefile    5.45.1.1 (Berkeley) 5/6/91
 #
 #      @(#)Makefile    5.45.1.1 (Berkeley) 5/6/91
 #
-# PATCHES MAGIC                LEVEL   PATCH THAT GOT US HERE
-# --------------------         -----   ----------------------
-# CURRENT PATCH LEVEL:         1       00123
-# --------------------         -----   ----------------------
-#
-# 04 Apr 93    Rodney W. Grimes        Removed added netccitt and vm
-#
-# Doing a make install builds /usr/include
-#
 # The ``rm -rf''s used below are safe because rm doesn't follow symbolic
 # links.
 #
 # The ``rm -rf''s used below are safe because rm doesn't follow symbolic
 # 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 \
-       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
+       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
 
 
-MFILES=        float.h frame.h
-LFILES=        errno.h fcntl.h signal.h syslog.h termios.h
+MFILES=        float.h floatingpoint.h frame.h
+LFILES=        errno.h fcntl.h signal.h syslog.h syscall.h termios.h
 
 DIRS=arpa protocols
 
 DIRS=arpa protocols
-LDIRS= net netccitt netimp netinet netiso netns nfs sys ufs vm
+LDIRS= net netccitt netinet netiso netns nfs sys ufs vm
+# removed netimp depricated?
 
 NOOBJ= noobj
 
 
 NOOBJ= noobj
 
@@ -35,9 +29,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 || \
@@ -77,11 +71,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}
@@ -90,7 +90,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