You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
428 B
24 lines
428 B
# The program units in this file consist of a module/submodule
|
|
# tree represented by the following graph:
|
|
#
|
|
# parent
|
|
# |
|
|
# / \
|
|
# / \
|
|
# child sibling
|
|
# |
|
|
# grandchild
|
|
# |
|
|
# GreatGrandChild
|
|
#
|
|
# where the parent node is a module and all other nodes are submodules.
|
|
|
|
add_executable(submod
|
|
main.f90
|
|
parent.f90
|
|
child.f90
|
|
grandchild.f90
|
|
greatgrandchild.f90
|
|
sibling.f90
|
|
)
|