Skip to content

Commit

Permalink
example: update the consistency checks.
Browse files Browse the repository at this point in the history
  • Loading branch information
skosukhin committed May 21, 2024
1 parent de95ef2 commit b2f2013
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion deplist.config.in
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b2f2013

Please sign in to comment.