mirror of
https://github.com/VictorEijkhout/TheArtOfHPC_vol3_cppf08programming.git
synced 2026-01-24 22:44:48 +09:00
36 lines
728 B
Makefile
36 lines
728 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 Victor Eijkhout
|
|
####
|
|
#### Makefile for Julia code directory "array"
|
|
####
|
|
################################################################
|
|
|
|
PROGRAMS = bounds push pointwise
|
|
|
|
LANGUAGE = J
|
|
include ../Make.inc
|
|
|
|
RUNS =
|
|
|
|
.PHONY: run_bounds
|
|
RUNS += run_bounds
|
|
run_bounds :
|
|
@julia bounds.j
|
|
|
|
.PHONY: run_pointwise
|
|
RUNS += run_pointwise
|
|
run_pointwise :
|
|
@julia pointwise.j
|
|
|
|
.PHONY: run_push
|
|
RUNS += run_push
|
|
run_push :
|
|
@julia push.j
|
|
|
|
include ../../makefiles/Make.clean
|