Home | History | Annotate | Line # | Download | only in libubsan
Makefile revision 1.1
      1  1.1  christos #	$NetBSD: Makefile,v 1.1 2016/06/01 22:48:55 christos Exp $
      2  1.1  christos .include <bsd.own.mk>
      3  1.1  christos 
      4  1.1  christos .include "../Makefile.inc"
      5  1.1  christos .include "../Makefile.sanitizer"
      6  1.1  christos 
      7  1.1  christos .PATH: ${SANITIZER}/ubsan
      8  1.1  christos 
      9  1.1  christos UBSAN_SRCS= \
     10  1.1  christos ubsan_diag.o \
     11  1.1  christos ubsan_flags.o \
     12  1.1  christos ubsan_handlers.o \
     13  1.1  christos ubsan_handlers_cxx.o \
     14  1.1  christos ubsan_init.o \
     15  1.1  christos ubsan_type_hash.o \
     16  1.1  christos ubsan_value.o
     17  1.1  christos 
     18  1.1  christos COPTS.ubsan_type_hash.cc+=-frtti
     19  1.1  christos 
     20  1.1  christos LIB=	ubsan
     21  1.1  christos SRCS+=	${UBSAN_SRCS}
     22  1.1  christos 
     23  1.1  christos .include <bsd.lib.mk>
     24