-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
example: update the consistency checks.
- Loading branch information
Showing
1 changed file
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,18 @@ | |
# Check whether the dependency graph is acyclic: | ||
--check-cycles | ||
# Check that each Fortran module is defined only once: | ||
--check-unique-prereq *.@[email protected] *.@OBJEXT@ | ||
--check-unique-prereq *.@[email protected] *.@OBJEXT@ *.modstamp | ||
# Check that each Fortran submodule is defined only once: | ||
--check-unique-prereq *.@[email protected] *.@OBJEXT@ *.modstamp | ||
# Check that every object file can be produced from a source file: | ||
--check-exists-prereq *.@OBJEXT@ *.f90 | ||
# Check that every Fortran module stamp file can be produced from a source file: | ||
--check-exists-prereq *.modstamp *.f90 | ||
# Check that all object files in the library have unique basenames: | ||
--check-unique-basename src/library/*.@OBJEXT@ | ||
|
||
# TODO: add the following checks once libmkhelper.a is handled properly: | ||
# Check that each Fortran module is defined: | ||
# --check-exists-prereq *.@[email protected] *.@OBJEXT@ *.modstamp | ||
# Check that each Fortran submodule is defined: | ||
# --check-exists-prereq *.@[email protected] *.@OBJEXT@ *.modstamp |