It's quite common to have a project directory structure where the ford output directory is a subdirectory of src_dir like:
project
├── docs
│ ├── ford.md
│ ├── html
│ │ ├── ...
│ ...
├── srcdir1
│ ├── file1.f90
│ └── file2.f90
└── srcdir2
└── file3.f90
This causes problems when ford is run a second time, as it picks up the docs/html/src directory and processes the copies of the source files in there.
Instead we should automatically ignore the ford directory entirely.
It's quite common to have a project directory structure where the ford output directory is a subdirectory of
src_dirlike:This causes problems when ford is run a second time, as it picks up the
docs/html/srcdirectory and processes the copies of the source files in there.Instead we should automatically ignore the ford directory entirely.