psblas3:
modules/psb_tools_mod.f90 newserial/Makefile newserial/psbn_d_coo_impl.f03 newserial/psbn_d_csr_impl.f03 psblas/psb_dspmm.f90 serial/Makefile serial/f03 serial/f03/Makefile serial/f03/psbn_d_coo_impl.f03 serial/f03/psbn_d_csr_impl.f03 tools/psb_dspasb.f90 Reorganization: make room for new serial stuff.psblas3-type-indexed
parent
d0c4c5c77c
commit
0863bc05b9
@ -0,0 +1,37 @@
|
|||||||
|
include ../../../Make.inc
|
||||||
|
|
||||||
|
#
|
||||||
|
# The object files
|
||||||
|
#
|
||||||
|
FOBJS = psbn_d_csr_impl.o psbn_d_coo_impl.o
|
||||||
|
|
||||||
|
OBJS=$(FOBJS)
|
||||||
|
|
||||||
|
#
|
||||||
|
# Where the library should go, and how it is called.
|
||||||
|
# Note that we are regenerating most of libsparker.a on the fly.
|
||||||
|
SPARKERDIR=..
|
||||||
|
LIBDIR=../..
|
||||||
|
MODDIR=../../modules
|
||||||
|
FINCLUDES=$(FMFLAG)$(LIBDIR) $(FMFLAG)$(MODDIR) $(FMFLAG)$(SPARKERDIR) $(FMFLAG).
|
||||||
|
#LIBNAME=libsparker.a
|
||||||
|
LIBFILE=$(LIBDIR)/$(LIBNAME)
|
||||||
|
|
||||||
|
#
|
||||||
|
# No change should be needed below
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
default: lib
|
||||||
|
|
||||||
|
lib: $(OBJS)
|
||||||
|
$(AR) $(LIBDIR)/$(LIBNAME) $(OBJS)
|
||||||
|
$(RANLIB) $(LIBDIR)/$(LIBNAME)
|
||||||
|
|
||||||
|
clean: cleanobjs
|
||||||
|
|
||||||
|
veryclean: cleanobjs
|
||||||
|
|
||||||
|
cleanobjs:
|
||||||
|
/bin/rm -f $(OBJS)
|
||||||
|
|
Loading…
Reference in New Issue