~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to src/kernel/fem/Makefile.in

  • Committer: logg
  • Date: 2003-02-06 14:40:25 UTC
  • Revision ID: devnull@localhost-20030206144025-bmqurqq95f073l40
Tailorized "2003-02-06 08:40:24 by logg"
Fixes...

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
libxml2_found = @libxml2_found@
74
74
 
75
75
SUBDIRS = dolfin
76
 
include_HEADERS = dolfin/dolfin_fem.h                           dolfin/ElementFunction.h                           dolfin/Function.h                           dolfin/FunctionList.h                           dolfin/FunctionSpace.h                           dolfin/Product.h                           dolfin/ShapeFunction.h                           dolfin/TriLinSpace.h
 
76
include_HEADERS = dolfin/dolfin_fem.h                           dolfin/ElementFunction.h                           dolfin/Equation.h                           dolfin/FiniteElement.h                           dolfin/Function.h                           dolfin/FunctionList.h                           dolfin/FunctionSpace.h                           dolfin/Galerkin.h                           dolfin/Product.h                           dolfin/ShapeFunction.h                           dolfin/Solver.h                           dolfin/TetLinMapping.h                           dolfin/TetLinSpace.h                           dolfin/TriLinMapping.h                           dolfin/TriLinSpace.h
77
77
 
78
78
INCLUDES = @MODULE_INCLUDES@
79
79
lib_LIBRARIES = libdolfin-fem.a
80
 
libdolfin_fem_a_SOURCES = ElementFunction.cpp                           Equation.hh                           EquationSystem.h                           FiniteElement.h                           Function.cpp                           FunctionList.cpp                           FunctionSpace.cpp                           Product.cpp                           ShapeFunction.cpp                           TetLinFunction.h                           TriLinFunction.h                           TriLinFunction.h
 
80
libdolfin_fem_a_SOURCES = ElementFunction.cpp                           Equation.cpp                           EquationSystem.h                           FiniteElement.cpp                           Function.cpp                           FunctionList.cpp                           FunctionSpace.cpp                           Galerkin.cpp                           Integral.cpp                           Mapping.cpp                           Product.cpp                           shapefunctions.cpp                           ShapeFunction.cpp                           TetLinMapping.cpp                           TriLinMapping.cpp
81
81
 
82
82
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
83
83
CONFIG_CLEAN_FILES = 
89
89
LDFLAGS = @LDFLAGS@
90
90
LIBS = @LIBS@
91
91
libdolfin_fem_a_LIBADD = 
92
 
libdolfin_fem_a_OBJECTS =  ElementFunction.o Function.o FunctionList.o \
93
 
FunctionSpace.o Product.o ShapeFunction.o
 
92
libdolfin_fem_a_OBJECTS =  ElementFunction.o Equation.o FiniteElement.o \
 
93
Function.o FunctionList.o FunctionSpace.o Galerkin.o Integral.o \
 
94
Mapping.o Product.o shapefunctions.o ShapeFunction.o TetLinMapping.o \
 
95
TriLinMapping.o
94
96
AR = ar
95
97
CXXFLAGS = @CXXFLAGS@
96
98
CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
109
111
 
110
112
TAR = tar
111
113
GZIP_ENV = --best
112
 
DEP_FILES =  .deps/ElementFunction.P .deps/Function.P \
113
 
.deps/FunctionList.P .deps/FunctionSpace.P .deps/Product.P \
114
 
.deps/ShapeFunction.P
 
114
DEP_FILES =  .deps/ElementFunction.P .deps/Equation.P \
 
115
.deps/FiniteElement.P .deps/Function.P .deps/FunctionList.P \
 
116
.deps/FunctionSpace.P .deps/Galerkin.P .deps/Integral.P .deps/Mapping.P \
 
117
.deps/Product.P .deps/ShapeFunction.P .deps/TetLinMapping.P \
 
118
.deps/TriLinMapping.P .deps/shapefunctions.P
115
119
SOURCES = $(libdolfin_fem_a_SOURCES)
116
120
OBJECTS = $(libdolfin_fem_a_OBJECTS)
117
121