Home | History | Annotate | Line # | Download | only in sync
Makefile revision 1.4
      1  1.4  martin # $NetBSD: Makefile,v 1.4 2014/10/13 09:57:35 martin Exp $
      2  1.1  martin 
      3  1.1  martin WARNS=0
      4  1.1  martin NOMAN=1
      5  1.1  martin 
      6  1.2  martin proginstall:
      7  1.2  martin 	@echo This directory features link time only tests.
      8  1.1  martin 
      9  1.1  martin .include <bsd.prog.mk>
     10  1.4  martin 
     11  1.4  martin PROG=	all_sync_ops_linkable
     12  1.4  martin 
     13  1.4  martin .if "${ACTIVE_CC}" == "clang" || \
     14  1.4  martin     ("${ACTIVE_CC}" == "gcc" && "${HAVE_GCC}" == "48")
     15  1.4  martin 
     16  1.4  martin CXXFLAGS+= -std=c++11
     17  1.4  martin PROG+=	cpp_atomic_ops_linkable
     18  1.4  martin 
     19  1.4  martin .endif
     20  1.4  martin 
     21