Added info to DebyeHuckel. It's getting to be near a documented state. test suite fix: fixed Makefile.in's. The .depends were not being included in the Makefiles. It should now be more stable.
107 lines
2.5 KiB
Makefile
Executable file
107 lines
2.5 KiB
Makefile
Executable file
#!/bin/sh
|
|
|
|
############################################################################
|
|
#
|
|
# Makefile to compile and link a C++ application to
|
|
# Cantera.
|
|
#
|
|
#############################################################################
|
|
|
|
# the name of the executable program to be created
|
|
PROG_NAME = cxx_examples
|
|
|
|
# the object files to be linked together. List those generated from Fortran
|
|
# and from C/C++ separately
|
|
OBJS = examples.o kinetics_example1.o kinetics_example2.o \
|
|
kinetics_example3.o \
|
|
equil_example1.o \
|
|
transport_example1.o transport_example2.o \
|
|
rxnpath_example1.o
|
|
|
|
# additional flags to be passed to the linker. If your program
|
|
# requires other external libraries, put them here
|
|
LINK_OPTIONS = @EXTRA_LINK@
|
|
|
|
|
|
#############################################################################
|
|
|
|
# the Fortran compiler
|
|
FORT = @F90@
|
|
|
|
# Fortran compile flags
|
|
FORT_FLAGS = @FFLAGS@
|
|
|
|
# Fortran libraries
|
|
FORT_LIBS = @FLIBS@
|
|
|
|
# the C++ compiler
|
|
CXX = @CXX@
|
|
|
|
# C++ compile flags
|
|
CXX_FLAGS = @CXXFLAGS@ @CXX_INCLUDES@
|
|
|
|
# external libraries
|
|
EXT_LIBS = @LOCAL_LIBS@ -lctcxx
|
|
|
|
# Ending C++ linking libraries
|
|
LCXX_END_LIBS = @LCXX_END_LIBS@
|
|
|
|
|
|
#------ you probably don't have to change anything below this line -----
|
|
|
|
|
|
# the directory where the Cantera libraries are located
|
|
CANTERA_LIBDIR=@buildlib@
|
|
|
|
# required Cantera libraries
|
|
CANTERA_LIBS =
|
|
|
|
# the directory where Cantera include files may be found.
|
|
CANTERA_INC=-I@ctroot@/build/include
|
|
|
|
# flags passed to the C++ compiler/linker for the linking step
|
|
LCXX_FLAGS = -L$(CANTERA_LIBDIR) @LOCAL_LIB_DIRS@ @CXXFLAGS@
|
|
|
|
# how to compile C++ source files to object files
|
|
.@CXX_EXT@.@OBJ_EXT@:
|
|
$(CXX) -c $< $(CANTERA_INC) $(CXX_FLAGS)
|
|
|
|
# how to compile Fortran source files to object files
|
|
.@F77_EXT@.@OBJ_EXT@:
|
|
$(FORT) -c $< $(FORT_FLAGS)
|
|
|
|
PROGRAM = ./$(PROG_NAME)$(EXE_EXT)
|
|
|
|
all: $(PROGRAM)
|
|
|
|
DEPENDS=$(OBJS:.o=.d)
|
|
|
|
%.d:
|
|
@CXX_DEPENDS@ -I$(CANTERA_INCDIR) $(CXX_FLAGS) $*.cpp > $*.d
|
|
|
|
$(PROGRAM): $(OBJS) $(CANTERA_LIBDIR)/libcantera.a $(CANTERA_LIBDIR)/libzeroD.a
|
|
$(CXX) -o $(PROGRAM) $(OBJS) $(LCXX_FLAGS) $(CANTERA_LIBS) \
|
|
$(LINK_OPTIONS) $(EXT_LIBS) @LIBS@ \
|
|
$(LCXX_END_LIBS)
|
|
|
|
# Add an additional target for stability:
|
|
$(OBJS): $(CANTERA_LIBDIR)/libcantera.a $(CANTERA_LIBDIR)/libzeroD.a
|
|
|
|
clean:
|
|
$(RM) $(OBJS) $(PROGRAM)
|
|
(if test -d SunWS_cache ; then \
|
|
$(RM) -rf SunWS_cache ; \
|
|
fi )
|
|
|
|
|
|
depends: $(DEPENDS)
|
|
cat *.d > .depends
|
|
$(RM) $(DEPENDS)
|
|
|
|
TAGS:
|
|
etags *.h *.cpp
|
|
|
|
ifeq ($(wildcard .depends), .depends)
|
|
include .depends
|
|
endif
|
|
|