mirror of
https://github.com/VictorEijkhout/TheArtOfHPC_vol3_cppf08programming.git
synced 2026-01-24 22:44:48 +09:00
29 lines
664 B
Makefile
29 lines
664 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 2021 Victor Eijkhout
|
|
####
|
|
#### Examples of F90 modules and sub modules
|
|
####
|
|
################################################################
|
|
|
|
PROGRAMS = modprog protect
|
|
WRONGS =
|
|
|
|
include ../Make.inc
|
|
LANGUAGE = F
|
|
|
|
RUNS =
|
|
|
|
# extra link:
|
|
modprog : smodone.o modone.o
|
|
# compile order
|
|
modprog.o : smodone.o
|
|
modprog.o smodone.o : modone.o
|
|
|
|
include ../../makefiles/Make.cmake
|
|
include ../../makefiles/Make.clean
|