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

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

1.1     ! nbrk        1: #      $OpenBSD: Makefile,v 1.1 2006/05/16 22:48:18 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 dkcksum.c \
        !            20:        lseek.c open.c nullfs.c read.c fstat.c \
        !            21:        ufs.c cread.c
        !            22:
        !            23: SRC_kern= ashrdi3.c bzero.c
        !            24:
        !            25: SRC_aviion= exec_aout.c
        !            26:
        !            27: SRC_here= clock.c parse_args.c
        !            28:
        !            29: SRCS= ${SRC_net} ${SRC_sa} ${SRC_aviion} ${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}/../libprom -I${S}/lib/libsa -I${S}
        !            38: CFLAGS+= ${XCFLAGS} ${COPTS} ${DEFS} ${DBG} ${INCL}
        !            39:
        !            40: .PATH:  ${DIR_SA} ${DIR_KERN}
        !            41:
        !            42: all: libsa.a
        !            43:
        !            44: install:
        !            45:
        !            46: .include <bsd.lib.mk>

CVSweb