mirror of
https://github.com/VictorEijkhout/TheArtOfHPC_vol3_cppf08programming.git
synced 2026-01-24 22:44:48 +09:00
33 lines
700 B
Makefile
33 lines
700 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
|
|
####
|
|
#### Examples of F90 looping
|
|
####
|
|
################################################################
|
|
|
|
PROGRAMS = labeled loopinf loops cycle
|
|
WRONGS = loopr
|
|
|
|
include ../Make.inc
|
|
LANGUAGE = F
|
|
|
|
RUNS =
|
|
|
|
# RUNS += run_plusone
|
|
# .PHONY: run_plusone
|
|
# run_plusone : plusone
|
|
# @./plusone
|
|
|
|
RUNS += run_loopr
|
|
.PHONY: run_loopr
|
|
run_loopr : loopr
|
|
@./loopr
|
|
|
|
include ../../makefiles/Make.cmake
|
|
include ../../makefiles/Make.clean
|