diff libcruft/Makerules.in @ 7789:82be108cc558

First attempt at single precision tyeps * * * corrections to qrupdate single precision routines * * * prefer demotion to single over promotion to double * * * Add single precision support to log2 function * * * Trivial PROJECT file update * * * Cache optimized hermitian/transpose methods * * * Add tests for tranpose/hermitian and ChangeLog entry for new transpose code
author David Bateman <dbateman@free.fr>
date Sun, 27 Apr 2008 22:34:17 +0200
parents 3184b36b03de
children e258715b2e78
line wrap: on
line diff
--- a/libcruft/Makerules.in	Wed May 14 18:09:56 2008 +0200
+++ b/libcruft/Makerules.in	Sun Apr 27 22:34:17 2008 +0200
@@ -29,7 +29,7 @@
 DLL_CXXDEFS = @CRUFT_DLL_DEFS@
 
 CRUFT_FSRC = $(addprefix $(srcdir)/, $(FSRC))
-CRUFT_CSRC = $(addprefix $(srcdir)/, $(CSRC))
+CRUFT_CSRC = $(addprefix $(srcdir)/, $(CSRC) $(CEXTRA))
 CRUFT_CXXSRC = $(addprefix $(srcdir)/, $(CXXSRC))
 
 CRUFT_SRC = $(CRUFT_FSRC) $(CRUFT_CSRC) $(CRUFT_CXXSRC)
@@ -61,9 +61,9 @@
     CRUFT_FPICOBJ := $(CRUFT_FOBJ)
   endif
   ifdef CPICFLAG
-    CRUFT_CPICOBJ := $(addprefix pic/, $(CRUFT_COBJ))
+    CRUFT_CPICOBJ := $(addprefix pic/, $(CRUFT_COBJ) $(CEXTRA))
   else
-    CRUFT_CPICOBJ := $(CRUFT_COBJ)
+    CRUFT_CPICOBJ := $(CRUFT_COBJ) $(CEXTRA)
   endif
   ifdef CXXPICFLAG
     CRUFT_CXXPICOBJ := $(addprefix pic/, $(CRUFT_CXXOBJ))