Skip to content

Commit

Permalink
Updated .gitignore to ignore all binaries by default (files with no e…
Browse files Browse the repository at this point in the history
…xtension)
  • Loading branch information
Breush committed Dec 5, 2018
1 parent ffd6681 commit 3422caf
Showing 1 changed file with 18 additions and 72 deletions.
90 changes: 18 additions & 72 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
**/Makefile
# Ignore all and unignore all with extensions,
# so that no-extensions files are ignored by default.
*
!/**/
!*.*

# Ignore generated files and folders
**/Makefile.in
**/*.log
**/*.trs
Expand All @@ -10,85 +16,25 @@
**/.libs
**/.deps/

tests/test-blas-matrix
tests/test-charpoly
tests/test-commentator
tests/test-cra
tests/test-det
tests/test-frobenius
tests/test-mpi-comm
tests/test-rank-Int
tests/test-rank-md
tests/test-rank-u32
tests/test-rational-solver
tests/test-rational-solver-adaptive
tests/test-smith-form-binary
tests/test-solve
tests/test-regression
tests/test-block-wiedemann
tests/test-cradomain
tests/test-dyadic-to-rational
tests/test-givaro-zpz
tests/test-givaro-zpzuns
tests/test-isposdef
tests/test-ispossemidef
tests/test-modular-balanced-double
tests/test-modular-balanced-int
tests/test-moore-penrose
tests/test-rational-reconstruction-base
tests/test-serialization
tests/test-smith-form-kannan-bachem
tests/test-solve-nonsingular

tests/.tmp-tests
tests/checker
tests/checker.dSYM/
tests/temp2

# Ignore specific folders
.vscode/
INSTALL
_configs.sed
aclocal.m4
autom4te.cache/
build-aux/

# Ignore specific files
_configs.sed
aclocal.m4
autogen.status
config.h
config.h.in
config.log
config.status
configure
doc/Doxyfile
doc/DoxyfileDev
examples/charpoly
examples/checksolve
examples/det
examples/dot-product
examples/doubledet
examples/echelon
examples/graph-charpoly
examples/grid_reduce
examples/minpoly
examples/omp_smithvalence
examples/poweroftwo_ranks
examples/rank
examples/smith
examples/smithvalence
examples/solve
examples/sparseelimdet
examples/sparseelimrank
examples/valence
examples/benchmatpolymult
examples/benchfft
examples/polysmith
benchmarks/benchmark-solveCRA
benchmarks/benchmark-example
libtool
linbox-config
linbox/config.h
linbox.pc
macros/libtool.m4
macros/ltoptions.m4
macros/ltsugar.m4
macros/ltversion.m4
macros/lt~obsolete.m4
stamp-h1
linbox.pc
autogen.status

# @todo Don't know why that is here
tests/.tmp-tests
tests/checker.dSYM/

0 comments on commit 3422caf

Please sign in to comment.