changeset 92:2ecab16e88e1

Also assemble.cc and assemble_systems.cc are compiled.
author gedeone-octave <marcovass89@hotmail.it>
date Wed, 07 Aug 2013 18:21:45 +0200
parents 51bfdf30b822
children 9e7035e0494b
files src/Makefile.in
diffstat 1 files changed, 16 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/Makefile.in	Wed Aug 07 18:20:59 2013 +0200
+++ b/src/Makefile.in	Wed Aug 07 18:21:45 2013 +0200
@@ -8,6 +8,9 @@
              Function.oct \
              fem_plot.oct \
              fem_save.oct \
+             assemble.oct \
+             assemble_system.oct \
+
 
 LIBS += -ldolfin
 
@@ -16,7 +19,7 @@
 fem_init_env.oct: fem_init_env.o
 	$(MKOCTFILE) $(CPPFLAGS) -s fem_init_env.o -o $@ $(LDFLAGS) $(LIBS)
 
-fem_init_env.o:  fem_init_env.cc mesh.h functionspace.h boundarycondition.h function.h coefficient.h
+fem_init_env.o:  fem_init_env.cc mesh.h functionspace.h boundarycondition.h function.h coefficient.h form.h
 	$(MKOCTFILE) $(CPPFLAGS) -c fem_init_env.cc $(LDFLAGS) -o $@ -I.
 
 Mesh.oct: Mesh.o
@@ -49,6 +52,18 @@
 Function.o: Function.cc function.h
 	$(MKOCTFILE) $(CPPFLAGS) -c Function.cc $(LDFLAGS) -o $@ -I.
 
+assemble.oct: assemble.o
+	$(MKOCTFILE) $(CPPFLAGS) -s assemble.o -o $@ $(LDFLAGS) $(LIBS)
+
+assemble.o: assemble.cc form.h boundarycondition.h
+	$(MKOCTFILE) $(CPPFLAGS) -c assemble.cc $(LDFLAGS) -o $@ -I.
+
+assemble_system.oct: assemble_system.o
+	$(MKOCTFILE) $(CPPFLAGS) -s assemble_system.o -o $@ $(LDFLAGS) $(LIBS)
+
+assemble_system.o: assemble_system.cc form.h boundarycondition.h
+	$(MKOCTFILE) $(CPPFLAGS) -c assemble_system.cc $(LDFLAGS) -o $@ -I.
+
 fem_plot.oct: fem_plot.o
 	$(MKOCTFILE) $(CPPFLAGS) -s fem_plot.o -o $@ $(LDFLAGS) $(LIBS)