[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / sys / arch / mvmeppc / stand / libsa

Annotation of sys/arch/mvmeppc/stand/libsa/Makefile, Revision 1.1

1.1     ! nbrk        1: #      $OpenBSD: Makefile,v 1.6 2004/01/25 14:51:46 miod Exp $
        !             2:
        !             3: LIB=sa
        !             4:
        !             5: NOPIC=nopic
        !             6: NOPROFILE=noprofile
        !             7:
        !             8: # Logically src/sys
        !             9: S=${.CURDIR}/../../../..
        !            10: DIR_SA=$S/lib/libsa
        !            11: DIR_KERN=$S/lib/libkern
        !            12:
        !            13: SRC_net= arp.c ether.c in_cksum.c net.c netif.c rpc.c nfs.c \
        !            14:         rarp.c bootparam.c
        !            15:
        !            16: SRC_sa=        alloc.c memcpy.c exit.c getfile.c gets.c globals.c \
        !            17:        printf.c strerror.c memset.c memcmp.c strncpy.c strcmp.c strlen.c \
        !            18:        strlcpy.c strlcat.c snprintf.c \
        !            19:        close.c closeall.c dev.c disklabel.c dkcksum.c \
        !            20:        lseek.c open.c nullfs.c read.c fstat.c \
        !            21:        ufs.c cread.c loadfile.c
        !            22:
        !            23: SRC_kern= ashrdi3.c bzero.c
        !            24:
        !            25: SRC_mvme= exec_mvme.c
        !            26:
        !            27: SRC_here= bugdev.c clock.c conf.c parse_args.c rawfs.c tftpfs.c
        !            28:
        !            29: SRCS= ${SRC_net} ${SRC_sa} ${SRC_mvme} ${SRC_here} ${SRC_kern}
        !            30:
        !            31: # DBG= -DDEBUG -DNETIF_DEBUG -DNFS_DEBUG -DRPC_DEBUG \
        !            32: #      -DNET_DEBUG -DRARP_DEBUG -DETHER_DEBUG
        !            33:
        !            34: #DEFS= -DCOMPAT_UFS
        !            35: DEFS= -D__INTERNAL_LIBSA_CREAD
        !            36: #-DNETIF_DEBUG
        !            37: INCL= -I${.CURDIR} -I${.CURDIR}/../libbug -I${S}/lib/libsa -I${S}
        !            38: COPTS= #-fno-defer-pop
        !            39: CFLAGS+= ${XCFLAGS} ${COPTS} ${DEFS} ${DBG} ${INCL} -O2
        !            40:
        !            41: .PATH:  ${DIR_SA} ${DIR_KERN}
        !            42:
        !            43: all: libsa.a
        !            44:
        !            45: install:
        !            46:
        !            47: .include <bsd.lib.mk>

CVSweb