1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
# -- generic files to ignore --
# emacs backup files
*~
# vim backup files
*.swp
# NFS file
.nfs*
# -- compiler-related --
# object files
# NOTE: This will result in git also exluding the top-level obj directory
# since its only contents are .o files.
*.o
# static library archives
# NOTE: This will result in git also exluding the top-level lib directory
# since its only contents are .a files.
*.a
*.so
*.so.*
# test executables
*.x
*.pexe
*.nexe
*.js
# link map files
*.map
# -- build system files --
config.mk
bli_config.h
bli_addon.h
# -- monolithic headers --
include/*/*.h
# -- makefile fragments --
.fragment.mk
# -- misc. --
# BLIS testsuite output file
output.testsuite
output.testsuite.*
# BLAS test output files
out.*
# GTAGS database
GPATH
GRTAGS
GTAGS
# Mac DS.store files
.DS_Store
|