Remove lapacke_mangling.h. This file must be generated automatically during build

This commit is contained in:
weslley.spereira
2021-06-15 20:09:43 -03:00
parent 34c8291095
commit a0c5e29cf7
2 changed files with 1 additions and 17 deletions
+1
View File
@@ -62,6 +62,7 @@ clean:
$(MAKE) -C src clean
$(MAKE) -C utils clean
$(MAKE) -C example clean
rm -f include/lapacke_mangling.h
cleanobj:
$(MAKE) -C src cleanobj
$(MAKE) -C utils cleanobj
-17
View File
@@ -1,17 +0,0 @@
#ifndef LAPACK_HEADER_INCLUDED
#define LAPACK_HEADER_INCLUDED
#ifndef LAPACK_GLOBAL
#if defined(LAPACK_GLOBAL_PATTERN_LC) || defined(ADD_)
#define LAPACK_GLOBAL(lcname,UCNAME) lcname##_
#elif defined(LAPACK_GLOBAL_PATTERN_UC) || defined(UPPER)
#define LAPACK_GLOBAL(lcname,UCNAME) UCNAME
#elif defined(LAPACK_GLOBAL_PATTERN_MC) || defined(NOCHANGE)
#define LAPACK_GLOBAL(lcname,UCNAME) lcname
#else
#define LAPACK_GLOBAL(lcname,UCNAME) lcname##_
#endif
#endif
#endif