mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-13 09:09:01 -04:00
23 lines
376 B
Makefile
23 lines
376 B
Makefile
# $NetBSD: Makefile,v 1.6 2014/10/18 02:22:35 joerg Exp $
|
|
|
|
WARNS=0
|
|
NOMAN=1
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= all_sync_ops_linkable
|
|
|
|
.if "${ACTIVE_CC}" == "clang" || \
|
|
("${ACTIVE_CC}" == "gcc" && "${HAVE_GCC}" == "48")
|
|
|
|
CXXFLAGS+= -std=c++11
|
|
PROG_CXX+= cpp_atomic_ops_linkable
|
|
|
|
.endif
|
|
|
|
proginstall:
|
|
@echo This directory features link time only tests.
|
|
|
|
.include <bsd.prog.mk>
|
|
|