BSD 4_3_Reno release
[unix-history] / usr / src / include / Makefile
index 46c6ed1..d868360 100644 (file)
-#
-# Copyright (c) 1980 Regents of the University of California.
-# All rights reserved.  The Berkeley software License Agreement
-# specifies the terms and conditions for redistribution.
-#
-#      @(#)Makefile    5.23 (Berkeley) 89/01/11
+#      @(#)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 pascal protocols
-STD=   a.out.h ar.h assert.h ctype.h curses.h ndbm.h dirent.h disktab.h \
-       fcntl.h fstab.h ftw.h grp.h lastlog.h math.h memory.h mp.h mtab.h \
-       netdb.h nlist.h pcc.h pwd.h ranlib.h regexp.h resolv.h setjmp.h \
-       sgtty.h stab.h stdarg.h stdio.h string.h strings.h struct.h \
-       sysexits.h time.h ttyent.h tzfile.h utmp.h varargs.h vfont.h
-LINKS= errno.h signal.h syslog.h
+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
 
 
-NETDIRS=       net netimp netinet netns
-TAHOEDIRS=     tahoe tahoemath tahoevba tahoeif
-VAXDIRS=       vax vaxmba vaxuba vaxif
+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
-TAGSFILE=tags
 
 
-all:
+all include clean cleandir depend lint tags:
 
 install: ${SHARED}
 
 install: ${SHARED}
-       -for i in ${STD}; do \
+       @echo installing ${STD}
+       @-for i in ${STD}; do \
                cmp -s $$i ${DESTDIR}/usr/include/$$i || \
                cmp -s $$i ${DESTDIR}/usr/include/$$i || \
-                   install -c -m 444 $$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; \
+               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 || \
                (cd $$i; for j in *.[ih]; do \
                        cmp -s $$j ${DESTDIR}/usr/include/$$i/$$j || \
-                       install -c -m 444 $$j ${DESTDIR}/usr/include/$$i/$$j; \
+                       install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$j \
+                           ${DESTDIR}/usr/include/$$i/$$j; \
                done); \
        done
                done); \
        done
-       -cmp -s Makefile.install ${DESTDIR}/usr/include/Makefile || \
-           install -c -m 444 Makefile.install ${DESTDIR}/usr/include/Makefile
-       -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
        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: ${MACHINE}.symlinks
-       rm -rf ${DESTDIR}/usr/include/sys
-       -if [ ! -s ${DESTDIR}/usr/include/sys ]; \
-       then \
-               ln -s /sys/h ${DESTDIR}/usr/include/sys; \
-       else \
-               echo ${DESTDIR}/usr/include/sys not removed; \
-       fi
-
-tahoe.symlinks:
-       -for i in ${NETDIRS} ${TAHOEDIRS}; 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; \
+       @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
 
-vax.symlinks:
-       -for i in ${NETDIRS} ${VAXDIRS}; do \
+symlinks:
+       @echo installing ${DIRS}
+       @-for i in ${DIRS}; do \
                rm -rf ${DESTDIR}/usr/include/$$i; \
                if [ ! -s ${DESTDIR}/usr/include/$$i ]; \
                then \
                        ln -s /sys/$$i ${DESTDIR}/usr/include/$$i; \
                rm -rf ${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
 
                else \
                        echo ${DESTDIR}/usr/include/$$i not removed; \
                fi; \
        done
 
-copies: ${MACHINE}.copies
-       rm -rf ${DESTDIR}/usr/include/sys;
-       mkdir ${DESTDIR}/usr/include/sys; 
-       chmod 775 ${DESTDIR}/usr/include/sys;
-       -(cd /sys/h; tar cf - *.h | (cd ${DESTDIR}/usr/include/sys; tar xpfB -))
-
-tahoe.copies:
-       -for i in ${NETDIRS} ${TAHOEDIRS}; do \
-               rm -rf ${DESTDIR}/usr/include/$$i; \
-               cd /sys; \
-               tar cf - $$i/*.h | (cd ${DESTDIR}/usr/include; tar xpfB -); \
-       done
-
-vax.copies:
-       -for i in ${NETDIRS} ${VAXDIRS}; do \
+copies:
+       @echo installing ${DIRS}
+       @-for i in ${DIRS}; do \
                rm -rf ${DESTDIR}/usr/include/$$i; \
                cd /sys; \
                tar cf - $$i/*.h | (cd ${DESTDIR}/usr/include; tar xpfB -); \
        done
 
                rm -rf ${DESTDIR}/usr/include/$$i; \
                cd /sys; \
                tar cf - $$i/*.h | (cd ${DESTDIR}/usr/include; tar xpfB -); \
        done
 
-tags:
-       cwd=/usr/include; \
-       for i in ${STD} ${LINKS}; do \
-               ctags -a -f ${TAGSFILE} $$cwd/$$i; \
-       done
-
-clean:
-       rm -f tags
-
-depend:
+.include <bsd.prog.mk>