BabelStream/cpp/STD.make
2021-05-23 07:21:21 +01:00

15 lines
331 B
Makefile

# Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
#
# For full license terms please see the LICENSE file distributed with this
# source code
CXXFLAGS=-O3 -std=c++17 -stdpar -DSTD
STD_CXX=nvc++
std-stream: main.cpp STDStream.cpp
$(STD_CXX) $(CXXFLAGS) $^ $(EXTRA_FLAGS) -o $@
.PHONY: clean
clean:
rm -f std-stream