BSD 4_3_Reno release
[unix-history] / usr / src / include / Makefile
index b42bf6d..d868360 100644 (file)
@@ -1,71 +1,98 @@
-#      Makefile        4.3     83/07/10
+#      @(#)Makefile    5.39 (Berkeley) 7/1/90
 #
 # Doing a make install builds /usr/include
 #
 #
 # Doing a make install builds /usr/include
 #
-# Define SHARED to indicate whether you want
-# symbolic links to the system source (``symlinks''),
-# or a separate copy (``copies'').
-# (latter useful in environments where it's
-# not possible to keep /sys publicly readable)
+# 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.
-#
-DESTDIR=
-SUBDIRS=arpa
-STD=   a.out.h ar.h assert.h ctype.h curses.h dbm.h \
-       disktab.h dumprestor.h fcntl.h fstab.h getty.h grp.h \
-       lastlog.h math.h mp.h mtab.h netdb.h nlist.h pwd.h ranlib.h \
-       setjmp.h sgtty.h stab.h stdio.h strings.h \
-       struct.h syscall.h sysexits.h syslog.h utmp.h varargs.h vfont.h
-LINKS= errno.h signal.h
-MACHINE=vax
-MACHDEP=${MACHINE} vaxif vaxmba vaxuba
-NETDIRS=net netimp netinet netpup
-SYSDIRS=${NETDIRS} stand ${MACHDEP}
+all clean cleandir depend lint tags:
+
+SUBDIRS=arpa protocols
+STD=   a.out.h ar.h assert.h bitstring.h ctype.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
+NOOBJ= noobj
+
+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
+
+# Define SHARED to indicate whether you want symbolic links to the system
+# 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
 
-all:
+all include clean cleandir depend lint tags:
 
 install: ${SHARED}
 
 install: ${SHARED}
-       -for i in ${STD}; do \
-               install -c -m 644 $$i ${DESTDIR}/usr/include/$$i; \
+       @echo installing ${STD}
+       @-for i in ${STD}; do \
+               cmp -s $$i ${DESTDIR}/usr/include/$$i || \
+                   install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \
+                   ${DESTDIR}/usr/include/$$i; \
        done
        done
-       -for i in ${SUBDIRS}; do \
+       @echo installing ${SUBDIRS}
+       @-for i in ${SUBDIRS}; do \
                if [ ! -d ${DESTDIR}/usr/include/$$i ]; \
                then \
                        mkdir ${DESTDIR}/usr/include/$$i; \
                fi; \
                if [ ! -d ${DESTDIR}/usr/include/$$i ]; \
                then \
                        mkdir ${DESTDIR}/usr/include/$$i; \
                fi; \
-               (cd $$i; for j in *.h; do \
-                       install -c -m 644 $$j ${DESTDIR}/usr/include/$$i/$$j; \
+               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/include/$$i/$$j || \
+                       install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$j \
+                           ${DESTDIR}/usr/include/$$i/$$j; \
                done); \
        done
                done); \
        done
-       -for i in ${LINKS}; do \
+       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
+       chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/machine;
+       @echo installing ${LSYS}
+       @-for i in ${LSYS}; do \
                rm -f ${DESTDIR}/usr/include/$$i; \
                ln -s sys/$$i ${DESTDIR}/usr/include/$$i; \
                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 \
+               rm -f ${DESTDIR}/usr/include/$$i; \
+               ln -s machine/$$i ${DESTDIR}/usr/include/$$i; \
+               chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/$$i; \
        done
        done
-       rm -f ${DESTDIR}/usr/include/machine
-       ln -s ./${MACHINE} ${DESTDIR}/usr/include/machine
-       rm -f ${DESTDIR}/usr/include/frame.h
-       ln -s machine/frame.h ${DESTDIR}/usr/include/frame.h
 
 symlinks:
 
 symlinks:
-       for i in ${SYSDIRS}; do \
+       @echo installing ${DIRS}
+       @-for i in ${DIRS}; do \
                rm -rf ${DESTDIR}/usr/include/$$i; \
                rm -rf ${DESTDIR}/usr/include/$$i; \
-               ln -s /sys/$$i ${DESTDIR}/usr/include/$$i; \
+               if [ ! -s ${DESTDIR}/usr/include/$$i ]; \
+               then \
+                       ln -s /sys/$$i ${DESTDIR}/usr/include/$$i; \
+                       chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/$$i; \
+               else \
+                       echo ${DESTDIR}/usr/include/$$i not removed; \
+               fi; \
        done
        done
-       rm -rf ${DESTDIR}/usr/include/sys
-       ln -s /sys/h ${DESTDIR}/usr/include/sys
 
 copies:
 
 copies:
-       for i in ${SYSDIRS}; do \
+       @echo installing ${DIRS}
+       @-for i in ${DIRS}; do \
                rm -rf ${DESTDIR}/usr/include/$$i; \
                cd /sys; \
                rm -rf ${DESTDIR}/usr/include/$$i; \
                cd /sys; \
-               tar cf - $$i/*.h | (cd /usr/include; tar xpf -); \
+               tar cf - $$i/*.h | (cd ${DESTDIR}/usr/include; tar xpfB -); \
        done
        done
-       rm -rf ${DESTDIR}/usr/include/sys;
-       mkdir ${DESTDIR}/usr/include/sys; 
-       chmod 755 ${DESTDIR}/usr/include/sys;
-       (cd /sys/h; tar cf - *.h | (cd ${DESTDIR}/usr/include/sys; tar xpf -))
 
 
-clean:
+.include <bsd.prog.mk>