[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / sys / compat / common

Annotation of sys/compat/common/Makefile, Revision 1.1

1.1     ! nbrk        1: #      $OpenBSD: Makefile,v 1.19 2004/09/16 13:57:47 miod Exp $
        !             2: #      $NetBSD: Makefile,v 1.8 1996/05/18 15:52:19 christos Exp $
        !             3:
        !             4: LIB=   compat
        !             5: NOPIC=
        !             6:
        !             7: MACHINE=       ${XMACHINE}
        !             8: MACHINE_ARCH=  ${XMACHINE_ARCH}
        !             9:
        !            10: .PATH: ${COMPATDIR}
        !            11:
        !            12: SRCS=  compat_exec.c compat_util.c compat_dir.c compat_vm.c \
        !            13:        kern_exit_43.c kern_ipc_23.c kern_ipc_35.c kern_info_09.c \
        !            14:        kern_info_43.c kern_resource_43.c kern_sig_43.c tty_43.c \
        !            15:        uipc_syscalls_43.c vfs_syscalls_25.c vfs_syscalls_35.c \
        !            16:        vfs_syscalls_43.c vm_43.c
        !            17:
        !            18: # really, all machines where sizeof(int) != sizeof(long)
        !            19: .if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "amd64") && \
        !            20:     (${MACHINE_ARCH} != "mips64") && (${MACHINE_ARCH} != "sparc64")
        !            21: SRCS+= kern_ipc_10.c
        !            22: .endif
        !            23:
        !            24: install:
        !            25:
        !            26: .include <bsd.lib.mk>

CVSweb