Skip to content

Commit

Permalink
Update .gitignore: include check results
Browse files Browse the repository at this point in the history
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
lckarssen committed Sep 19, 2024
1 parent 743a32f commit 7198bea
Showing 1 changed file with 32 additions and 11 deletions.
43 changes: 32 additions & 11 deletions .gitignore
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

0 comments on commit 7198bea

Please sign in to comment.