blob: d70de2f6e86ed467f86bffc1920c8a7c462b918e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: Makefile,v 1.8 2019/02/26 10:01:41 isaki Exp $
WARNS=0
NOMAN=1
.include <bsd.own.mk>
.if "${ACTIVE_CC}" == "clang"
CXXFLAGS+= -std=c++11
PROG_CXX+= cpp_atomic_ops_linkable
.endif
proginstall:
@echo This directory features link time only tests.
.include <bsd.prog.mk>
|