forked from GenABEL-Project/ProbABEL
-
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.
Update .gitignore: include check results
This commit updates the .gitignore file. It cleans it up a bit, but most importantly, it adds the files generated by `make check` to the list of ignored files to make sure those don't get accidentally added (or just clutter the output of `git status`).
- Loading branch information
Showing
1 changed file
with
32 additions
and
11 deletions.
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 |
---|---|---|
@@ -1,26 +1,47 @@ | ||
/**/*.log | ||
/**/Makefile | ||
/**/Makefile.in | ||
/**/.btmp | ||
|
||
# / | ||
/.project | ||
/autom4te.cache | ||
/aclocal.m4 | ||
/Makefile.in | ||
/config.status | ||
/configure | ||
/.Rhistory | ||
|
||
# /checks/ | ||
/checks/Makefile | ||
/checks/Makefile.in | ||
|
||
# /checks/R-tests/ | ||
/checks/R-tests/Makefile.in | ||
/checks/**/*.trs | ||
/checks/**/*.out.txt | ||
/checks/probabel_config.cfg | ||
/checks/*.dose | ||
/checks/*.prob | ||
/checks/*.mldose | ||
/checks/*.map | ||
/checks/*.info | ||
/checks/height.PHE | ||
/checks/probabel | ||
|
||
# /doc/ | ||
/doc/Makefile.in | ||
/doc/doxygen-docs | ||
/doc/ProbABEL_manual.idx | ||
/doc/ProbABEL_manual.ilg | ||
/doc/ProbABEL_manual.ind | ||
/doc/ProbABEL_manual.log | ||
/doc/ProbABEL_manual.out | ||
/doc/ProbABEL_manual.pdf | ||
/doc/ProbABEL_manual.toc | ||
|
||
# /examples/ | ||
/examples/Makefile.in | ||
|
||
# /src/ | ||
/src/Makefile.in | ||
/src/pacoxph | ||
/src/palinear | ||
/src/palogist | ||
/src/stamp-h1 | ||
/src/config.h.in | ||
.Rhistory | ||
/src/config.h | ||
/src/**/*.o | ||
/src/.deps/ | ||
/src/fvlib/.deps/ | ||
/src/fvlib/.dirstamp |