mirror of
https://github.com/VictorEijkhout/TheArtOfHPC_vol3_cppf08programming.git
synced 2026-01-24 22:44:48 +09:00
27 lines
648 B
Makefile
27 lines
648 B
Makefile
# -*- makefile -*-
|
|
################################################################
|
|
####
|
|
#### This makefile is part of the course
|
|
#### Introduction to Scientific Programming in C++ and Fortran
|
|
#### by Victor Eijkhout (eijkhout@tacc.utexas.edu)
|
|
#### copyright 2019-2023 Victor Eijkhout
|
|
####
|
|
#### C++20 span & C++23 mdspan tests
|
|
####
|
|
################################################################
|
|
|
|
PROGRAMS = transpose
|
|
|
|
LANGUAGE = CXX
|
|
MODULES = mdspan rangev3
|
|
INCLUDES = -I${TACC_MDSPAN_INC} -I${TACC_RANGEV3_INC}
|
|
CPPSTANDARD = 23
|
|
include ../Make.inc
|
|
|
|
RUNS =
|
|
|
|
.PHONY: ${RUNS}
|
|
|
|
include ../../makefiles/Make.cmake
|
|
include ../../makefiles/Make.clean
|