Home | History | Annotate | Line # | Download | only in libkern
Makefile revision 1.5
      1 #	$Id: Makefile,v 1.5 1993/12/04 05:21:03 cgd Exp $
      2 
      3 LIB=	kern
      4 NOPIC=
      5 OBJMACHINE=
      6 
      7 .if exists (${.CURDIR}/${MACHINE_ARCH}/Makefile.inc)
      8 .PATH:	${.CURDIR}/${MACHINE_ARCH}
      9 .include "${.CURDIR}/${MACHINE_ARCH}/Makefile.inc"
     10 .endif
     11 
     12 LIBC=	${.CURDIR}/../../../lib/libc
     13 .PATH: ${LIBC}/string ${LIBC}/arch/${MACHINE_ARCH}/string
     14 .PATH: ${LIBC}/net ${LIBC}/arch/${MACHINE_ARCH}/net
     15 .PATH: ${LIBC}/gen ${LIBC}/arch/${MACHINE_ARCH}/gen
     16 .PATH: ${LIBC}/stdlib ${LIBC}/arch/${MACHINE_ARCH}/stdlib
     17 .PATH: ${LIBC}/sys ${LIBC}/arch/${MACHINE_ARCH}/sys
     18 AINC+=	-I${LIBC}/arch/${MACHINE_ARCH}
     19 
     20 # Quad support
     21 SRCS+=	adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
     22 	lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
     23 	subdi3.c  ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
     24 
     25 .PATH: ${LIBC}/arch/${MACHINE_ARCH}/quad ${LIBC}/quad
     26 
     27 install:
     28 
     29 .include <bsd.lib.mk>
     30