Files
blis/.gitignore
Dipal M Zambare 06e386f054 Updated Windows build system to pick AMD specific sources.
The framework cleanup was done for linux as part of
f63f78d7 Removed Arch specific code from BLIS framework.

This commit adds changes needed for windows build.

AMD-Internal: [CPUPL-2052]

Change-Id: Ibd503a0adeea66850de156fb95657b124e1c4b9d
2022-05-17 18:09:20 +05:30

66 lines
825 B
Plaintext

# -- 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*
# BLAS test output files
out.*
# GTAGS database
GPATH
GRTAGS
GTAGS
# Windows Build
build/*
bin/*
*.dll
*.lib
*.pdb
*.exe
.vscode