Annotation of 43BSDReno/usr.sbin/amd/config/make-bits/Makefile.mods, revision 1.1

1.1     ! root        1: #
        !             2: # $Id: Makefile.mods,v 5.2 90/06/23 22:21:04 jsp Rel $
        !             3: #
        !             4: # Copyright (c) 1990 Jan-Simon Pendry
        !             5: # Copyright (c) 1990 Imperial College of Science, Technology & Medicine
        !             6: # Copyright (c) 1990 The Regents of the University of California.
        !             7: # All rights reserved.
        !             8: #
        !             9: # This code is derived from software contributed to Berkeley by
        !            10: # Jan-Simon Pendry at Imperial College, London.
        !            11: #
        !            12: # Redistribution and use in source and binary forms are permitted provided
        !            13: # that: (1) source distributions retain this entire copyright notice and
        !            14: # comment, and (2) distributions including binaries display the following
        !            15: # acknowledgement:  ``This product includes software developed by the
        !            16: # University of California, Berkeley and its contributors'' in the
        !            17: # documentation or other materials provided with the distribution and in
        !            18: # all advertising materials mentioning features or use of this software.
        !            19: # Neither the name of the University nor the names of its contributors may
        !            20: # be used to endorse or promote products derived from this software without
        !            21: # specific prior written permission.
        !            22: # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
        !            23: # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
        !            24: # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
        !            25: #
        !            26: #      @(#)Makefile.mods       5.1 (Berkeley) 6/29/90
        !            27: #
        !            28: 
        !            29: #
        !            30: # Files defining different O/S flavors
        !            31: #
        !            32: OS_FILES = \
        !            33:        config/os-acis43.h \
        !            34:        config/os-aix3.h config/misc-aix3.h \
        !            35:                config/Makefile.aix3 config/mtab_aix.c \
        !            36:        config/os-aux.h \
        !            37:        config/os-bsd44.h config/Makefile.bsd44 config/mtab_bsd.c \
        !            38:        config/os-concentrix.h \
        !            39:        config/os-convex.h \
        !            40:        config/os-defaults.h \
        !            41:        config/os-fpx4.h \
        !            42:        config/os-hlh42.h \
        !            43:        config/os-hpux.h config/misc-hpux.h config/Makefile.hpux \
        !            44:        config/os-pyrOSx.h \
        !            45:        config/os-riscix.h \
        !            46:        config/os-sos3.h \
        !            47:        config/os-sos4.h config/mtab_file.c \
        !            48:        config/os-u2_2.h config/misc-ultrix.h config/mtab_ultrix.c \
        !            49:        config/os-u3_0.h \
        !            50:        config/os-umax43.h \
        !            51:        config/os-utx32.h \
        !            52:        config/os-xinu43.h
        !            53: 
        !            54: # Experimental...
        !            55: EXPERIMENTAL_OS_FILES = config/os-aix2.h config/Makefile.aix2
        !            56: 
        !            57: #
        !            58: # Other files that need to be shipped
        !            59: #
        !            60: BITS = \
        !            61:        Makefile \
        !            62:        Makefile.com \
        !            63:        Makefile.mods \
        !            64:        Makefile.build \
        !            65:        Makefile.top \
        !            66:        amd/ChangeLog \
        !            67:        amd/Makefile \
        !            68:        amd/Makefile.amd \
        !            69:        amd/amd.8 \
        !            70:        amd/patchlevel.h \
        !            71:        amq/Makefile \
        !            72:        amq/Makefile.amq \
        !            73:        amq/amq.8 \
        !            74:        config/Configure \
        !            75:        config/Makefile.config \
        !            76:        config/RELEASE \
        !            77:        config/newvers.sh \
        !            78:        config/arch \
        !            79:        config/os-type \
        !            80:        doc/Makefile \
        !            81:        doc/Makefile.doc \
        !            82:        mk-amd-map/Makefile \
        !            83:        mk-amd-map/Makefile.mk-amd-map \
        !            84:        text/amd.start.ex \
        !            85:        text/COPYRIGHT \
        !            86:        text/INSTALL \
        !            87:        text/README \
        !            88:        text/PORTS
        !            89: 
        !            90: #
        !            91: # Files to ship
        !            92: #
        !            93: SHIP = \
        !            94:        ${AMDSRC} ${AMQSRC} ${MKMAPSRC} ${RPCSRC} \
        !            95:        ${HDRS} ${OS_FILES} ${BITS} ${MAPS} ${SCRIPTS}
        !            96: 
        !            97: HDRS = \
        !            98:        include/am.h include/fstype.h include/uwait.h
        !            99: 
        !           100: AMDSRC = \
        !           101:        amd/afs_ops.c amd/amd.c amd/am_ops.c amd/amq_subr.c amd/clock.c \
        !           102:        amd/efs_ops.c amd/get_args.c amd/host_ops.c amd/ifs_ops.c \
        !           103:        amd/info_file.c amd/info_hes.c amd/info_ndbm.c \
        !           104:        amd/info_nis.c amd/info_passwd.c amd/map.c amd/mapc.c \
        !           105:        amd/misc_rpc.c amd/mntfs.c amd/mount_fs.c amd/mtab.c \
        !           106:        amd/nfs_ops.c amd/nfs_start.c amd/nfs_subr.c amd/opts.c \
        !           107:        amd/pfs_ops.c amd/rcs_info.c amd/restart.c amd/rpc_fwd.c \
        !           108:        amd/sched.c amd/sfs_ops.c amd/srvr_afs.c amd/srvr_nfs.c \
        !           109:        amd/ufs_ops.c amd/umount_fs.c amd/util.c
        !           110: 
        !           111: AMQSRC = \
        !           112:        amq/amq.c
        !           113: 
        !           114: MKMAPSRC = \
        !           115:        mk-amd-map/mk-amd-map.c
        !           116: 
        !           117: RPCSRC = \
        !           118:        rpcx/amq.x rpcx/amq.h rpcx/amq_xdr.c rpcx/amq_clnt.c \
        !           119:        rpcx/amq_svc.c rpcx/mount.x rpcx/mount.h \
        !           120:        rpcx/mount_xdr.c rpcx/nfs_prot.x rpcx/nfs_prot.h \
        !           121:        rpcx/nfs_prot_svc.c rpcx/nfs_prot_xdr.c
        !           122: 
        !           123: DOCS = \
        !           124:        doc/nh.sty doc/nh.doc \
        !           125:        doc/amd.bbl doc/amd.bib \
        !           126:        doc/amd.tex doc/title.tex doc/overview.tex doc/maps.tex \
        !           127:        doc/cmdline.tex doc/fstype.tex doc/amq.tex doc/examples.tex \
        !           128:        doc/internals.tex doc/biblio.tex
        !           129: 
        !           130: #MAPS = \
        !           131: #      maps/am.master maps/amd.home \
        !           132: #      maps/amd.homes maps/amd.vol
        !           133: MAPS = \
        !           134:        maps/a_master maps/a_net
        !           135: 
        !           136: #SCRIPTS = \
        !           137: #      scripts/build-userinfo \
        !           138: #      scripts/get-homes \
        !           139: #      scripts/mk-home-maps \
        !           140: #      scripts/auto-banner
        !           141: 
        !           142: #
        !           143: # Files to print
        !           144: #
        !           145: PRINT = \
        !           146:        ${SHIP} ${SCRIPTS}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.