[cantera]: server is going up and down, committing to save what i have

This commit is contained in:
Nicholas Malaya 2012-01-17 22:53:51 +00:00
parent bc259b91d0
commit bdcd10b9ab
2 changed files with 28 additions and 93 deletions

28
ext/lapack/Makefile.am Normal file
View file

@ -0,0 +1,28 @@
fc_sources = dbdsqr.f dgbtrf.f dgbtf2.f dgbtrs.f dgbsv.f \
dgebd2.f dgebrd.f dgelq2.f dgelqf.f dgelss.f \
dgeqr2.f dgeqrf.f dgetf2.f dgetrf.f dgetri.f \
dgetrs.f dlabad.f dlabrd.f dlacpy.f dlamch.f \
dlange.f dlapy2.f dlarf.f dlarfb.f dlarfg.f \
dlarft.f dlartg.f dlas2.f dlascl.f dlaset.f \
dlasq1.f dlasq2.f dlasq3.f dlasq4.f dlasr.f \
dlasrt.f dlassq.f dlasv2.f dlaswp.f dorg2r.f \
dorgbr.f dorgl2.f dorglq.f dorgqr.f dorm2r.f \
dormbr.f dorml2.f dormlq.f dormqr.f drscl.f \
ilaenv.f
INCLUDES =
AM_CXXFLAGS = $(INCLUDES)
AM_FCFLAGS = $(INCLUDES)
lib_LTLIBRARIES = $(top_builddir)/build/lib/libctlapack.la
library_includedir = $(top_builddir)/build/include
library_include_HEADERS = $(h_sources)
#-----------------------
# Cantera Converters C/C++ library
#-----------------------
__top_builddir__build_lib_libctlapack_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE)
__top_builddir__build_lib_libctlapack_la_SOURCES = $(fc_sources) $(cc_sources)
CLEANFILES = *.o

View file

@ -1,93 +0,0 @@
# $License$
# $Id: Makefile.in,v 1.10 2008/12/30 21:58:10 hkmoffa Exp $
#
#/bin/sh
.SUFFIXES :
.SUFFIXES : .f .o
LAPACKLIB = @buildlib@/libctlapack.a
do_ranlib = @DO_RANLIB@
PURIFY=@PURIFY@
PIC_FLAG=@PIC@
F_FLAGS = @FFLAGS@ $(PIC_FLAG)
OBJS = \
dbdsqr.o \
dgbtrf.o \
dgbtf2.o \
dgbtrs.o \
dgbsv.o \
dgebd2.o \
dgebrd.o \
dgelq2.o \
dgelqf.o \
dgelss.o \
dgeqr2.o \
dgeqrf.o \
dgetf2.o \
dgetrf.o \
dgetri.o \
dgetrs.o \
dlabad.o \
dlabrd.o \
dlacpy.o \
dlamch.o \
dlange.o \
dlapy2.o \
dlarf.o \
dlarfb.o \
dlarfg.o \
dlarft.o \
dlartg.o \
dlas2.o \
dlascl.o \
dlaset.o \
dlasq1.o \
dlasq2.o \
dlasq3.o \
dlasq4.o \
dlasr.o \
dlasrt.o \
dlassq.o \
dlasv2.o \
dlaswp.o \
dorg2r.o \
dorgbr.o \
dorgl2.o \
dorglq.o \
dorgqr.o \
dorm2r.o \
dormbr.o \
dorml2.o \
dormlq.o \
dormqr.o \
drscl.o \
ilaenv.o
#SRCS = $(OBJS:.o=.cpp)
all: $(LAPACKLIB)
$(LAPACKLIB): $(OBJS)
@ARCHIVE@ $(LAPACKLIB) $(OBJS) > /dev/null
ifeq ($(do_ranlib),1)
@RANLIB@ $(LAPACKLIB)
endif
#
# Right now g77 is not a known compiler to PURIFY. Why,
# I don't know. Taking the instrumentation out for now
#
%.o : %.f
@F77@ -c $< $(F77_INCLUDES) $(F_FLAGS)
$(OBJS): Makefile
clean:
$(RM) $(OBJS) $(LAPACKLIB)
depends: