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