Home | History | Annotate | Line # | Download | only in arm
Makefile.inc revision 1.20
      1  1.20   matt #	$NetBSD: Makefile.inc,v 1.20 2013/08/20 21:43:03 matt Exp $
      2   1.1  bjh21 
      3   1.8    dsl SRCS+=	byte_swap_2.S byte_swap_4.S
      4   1.8    dsl SRCS+=	ffs.S
      5  1.17   matt SRCS+=	divsi3.S udivsi3.S divide.S clzsi2.S
      6  1.14   matt SRCS+=	memcmp.S memcpy.S memset.S memmove.S strcmp.S strncmp.S
      7  1.18   matt SRCS+=	modsi3.S umodsi3.S
      8  1.10   matt 
      9  1.16   matt .if !empty(MACHINE_ARCH:Mearm*)
     10  1.10   matt SRCS+=	__aeabi_ldivmod.S __aeabi_uldivmod.S __aeabi_lcmp.c __aeabi_ulcmp.c
     11  1.19   matt SRCS+=	unwind_stub.c
     12  1.20   matt .endif
     13  1.20   matt .if empty(MACHINE_ARCH:Mearmv7*)
     14  1.20   matt CPUFLAGS.ffs.S+=	-marm
     15  1.20   matt .endif
     16  1.20   matt CPUFLAGS.divide.S+=	-marm
     17  1.20   matt CPUFLAGS.memcmp.S+=	-marm
     18  1.20   matt CPUFLAGS.memcpy.S+=	-marm
     19  1.20   matt CPUFLAGS.memmove.S+=	-marm
     20  1.20   matt CPUFLAGS.memset.S+=	-marm
     21  1.20   matt .if empty(CPPFLAGS:M-D_STANDALONE)
     22  1.20   matt CPUFLAGS.strcpy.S+=	-marm
     23  1.20   matt CPUFLAGS.strlcpy.S+=	-marm
     24  1.20   matt CPUFLAGS.strncpy.S+=	-marm
     25  1.10   matt .endif
     26