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