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

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

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

CVSweb