1# $NetBSD: Makefile,v 1.6 2014/10/18 02:22:35 joerg Exp $ 2 3WARNS=0 4NOMAN=1 5 6.include <bsd.own.mk> 7 8PROG= all_sync_ops_linkable 9 10.if "${ACTIVE_CC}" == "clang" || \ 11 ("${ACTIVE_CC}" == "gcc" && "${HAVE_GCC}" == "48") 12 13CXXFLAGS+= -std=c++11 14PROG_CXX+= cpp_atomic_ops_linkable 15 16.endif 17 18proginstall: 19 @echo This directory features link time only tests. 20 21.include <bsd.prog.mk> 22 23