1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Do not include wrappers for MATGEN functions in liblapacke
These functions are not shipped with liblapack. Including wrappers to them in
liblapacke makes that shared library unusable.
Author: Sébastien Villemot <sebastien.villemot@ens.fr>
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=680428
Forwarded: not-needed
Last-Update: 2012-07-06
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/lapacke/src/Makefile
+++ b/lapacke/src/Makefile
@@ -2040,7 +2040,7 @@
lapacke_zlagsy.o \
lapacke_zlagsy_work.o
-ALLOBJ = $(SRC_OBJ) $(MATGEN_OBJ)
+ALLOBJ = $(SRC_OBJ)
ifdef USEXBLAS
ALLXOBJ = $(SXLASRC) $(DXLASRC) $(CXLASRC) $(ZXLASRC)
|