54 lines
1.2 KiB
Makefile
54 lines
1.2 KiB
Makefile
cc_sources = \
|
|
daux.c \
|
|
mach.cpp \
|
|
ddaspk.c \
|
|
dgbefa.c \
|
|
dgbsl.c \
|
|
dgefa.c \
|
|
dgesl.c \
|
|
dp1vlu.c \
|
|
dpcoef.c \
|
|
dpolft.c \
|
|
fdump.c \
|
|
j4save.c \
|
|
pcoef.c \
|
|
polfit.c \
|
|
pvalue.c \
|
|
xercnt.c \
|
|
xerhlt.c \
|
|
xermsg.c \
|
|
xerprn.c \
|
|
xersve.c \
|
|
xgetua.c \
|
|
printstring.c
|
|
|
|
h_sources = cblas.h gmres.h
|
|
|
|
AM_CPPFLAGS = -I../f2c_libs
|
|
AM_CXXFLAGS = $(AM_CPPFLAGS)
|
|
AM_FCFLAGS = $(AM_CPPFLAGS)
|
|
|
|
lib_LTLIBRARIES = $(top_builddir)/build/lib/libctmath.la
|
|
library_includedir = $(top_builddir)/include
|
|
library_include_HEADERS = $(h_sources)
|
|
|
|
#-----------------------
|
|
# Cantera Converters C/C++ library
|
|
#-----------------------
|
|
|
|
__top_builddir__build_lib_libctmath_la_LDFLAGS = $(all_libraries) -release $(GENERIC_RELEASE)
|
|
__top_builddir__build_lib_libctmath_la_SOURCES = $(cc_sources) $(h_sources)
|
|
|
|
__top_builddir__build_lib_libctmath_include_HEADERS = $(h_sources)
|
|
__top_builddir__build_lib_libctmath_includedir = $(prefix)/include
|
|
|
|
|
|
CLEANFILES = *.o
|
|
|
|
# header file accumulation
|
|
all:
|
|
@echo copying headers $<
|
|
cp -p ../f2c_libs/sysdep1.h0 ../f2c_libs/sysdep1.h
|
|
cp -p ../f2c_libs/signal1.h0 ../f2c_libs/signal1.h
|
|
@echo installing config.h
|
|
cp -p ../../config.h ../../include/cantera/base/
|