mirror of
https://github.com/VictorEijkhout/TheArtOfHPC_vol3_cppf08programming.git
synced 2026-01-24 22:44:48 +09:00
27 lines
612 B
Makefile
27 lines
612 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 2020-2022 Victor Eijkhout
|
|
####
|
|
#### ODE solving exercises
|
|
####
|
|
################################################################
|
|
|
|
PROGRAMS = pureint ballistics
|
|
|
|
LANGUAGE = CXX
|
|
include ../Make.inc
|
|
|
|
RUNS =
|
|
|
|
RUNS += run_pureint
|
|
.PHONY: run_pureint
|
|
run_pureint : pureint
|
|
@./pureint
|
|
include ../../makefiles/Make.cmake
|
|
include ../../makefiles/Make.clean
|