From bdcd10b9ab702aad7d570c106c093b9145142fa5 Mon Sep 17 00:00:00 2001 From: Nicholas Malaya Date: Tue, 17 Jan 2012 22:53:51 +0000 Subject: [PATCH] [cantera]: server is going up and down, committing to save what i have --- ext/lapack/Makefile.am | 28 +++++++++++++ ext/lapack/Makefile.in | 93 ------------------------------------------ 2 files changed, 28 insertions(+), 93 deletions(-) create mode 100644 ext/lapack/Makefile.am delete mode 100755 ext/lapack/Makefile.in diff --git a/ext/lapack/Makefile.am b/ext/lapack/Makefile.am new file mode 100644 index 000000000..df5399853 --- /dev/null +++ b/ext/lapack/Makefile.am @@ -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 diff --git a/ext/lapack/Makefile.in b/ext/lapack/Makefile.in deleted file mode 100755 index ce5e6e97e..000000000 --- a/ext/lapack/Makefile.in +++ /dev/null @@ -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: