Files
Victor Eijkhout b13edff125 initial upload
2022-11-13 14:03:01 -06:00

27 lines
609 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 2018-9 Victor Eijkhout
####
#### map exercises
####
################################################################
PROGRAMS = countint
LANGUAGE = CXX
include ../Make.inc
CPPSTANDARD = 17
RUNS =
RUNS += run_countint
.PHONY: run_countint
run_countint : countint
@./countint
include ../../makefiles/Make.cmake
include ../../makefiles/Make.clean