/ani/mrses

To get this branch, use:
bzr branch http://suren.me/webbzr/ani/mrses

« back to all changes in this revision

Viewing changes to cell/spu/Makefile

  • Committer: Suren A. Chilingaryan
  • Date: 2010-04-28 04:30:08 UTC
  • Revision ID: csa@dside.dyndns.org-20100428043008-vd9z0nso9axezvlp
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include ../Makefile.in
 
2
 
 
3
VPATH           :=      ..
 
4
PROGRAMS_spu    :=      mrses_spe
 
5
LIBRARY_embed   :=      lib_mrses_spu.a
 
6
#OBJS_mrses_spe :=      mrses_spe.o atlas_potrf.o vec_potrf.o
 
7
OBJS_mrses_spe  :=      mrses_spe.o vec_potrf.o
 
8
 
 
9
INCLUDE         +=      $(EXP_SDKINC)
 
10
 
 
11
#IMPORTS                :=      /usr/spu/lib/libblas.a -lm
 
12
#IMPORTS                :=      $(EXP_SDKLIB)/spu/libblas.a
 
13
 
 
14
#CFLAGS         += -ffast-math
 
15
#LDFLAGS        := $(LDFLAGS_MATH)
 
16
IMPORTS         := -lm -lsimdmath -lvector -lblas
 
17
#IMPORTS        += libgslcblas.a lapack_SPE.a blas_SPE.a -lm -lsimdmath -lvector -lblas -llarge_matrix
 
18
 
 
19
 
 
20
ifdef CELL_TOP
 
21
        include $(CELL_TOP)/buildutils/make.footer
 
22
else
 
23
        include ../../../../buildutils/make.footer
 
24
endif
 
25