mirror of
https://github.com/VictorEijkhout/TheArtOfHPC_vol3_cppf08programming.git
synced 2026-01-24 22:44:48 +09:00
19 lines
540 B
Makefile
19 lines
540 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 2017 Victor Eijkhout
|
|
####
|
|
#### spherical : exercises based on the Spherical Cow book
|
|
####
|
|
################################################################
|
|
|
|
PROGRAMS = cobbler
|
|
|
|
LANGUAGE = CXX
|
|
include ../Make.inc
|
|
include ../../makefiles/Make.cmake
|
|
include ../../makefiles/Make.clean
|