Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix: Added missing dependencies to Makefile.
Parallel compilation (make -j *) is very sensitive to the correct dependency settings and fails sometimes without them.
  • Loading branch information
msteghofer committed Aug 31, 2011
1 parent 089e31f commit bf8fb30
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Expand Up @@ -1091,6 +1091,7 @@ $(OBJECT_DIR)/cmiss_c.o : $(SOURCE_DIR)/cmiss_c.c
$(OBJECT_DIR)/cmiss_cellml.o : $(SOURCE_DIR)/cmiss_cellml.f90 \
$(OBJECT_DIR)/cmiss_fortran_c.o \
$(OBJECT_DIR)/base_routines.o \
$(OBJECT_DIR)/field_routines.o \
$(OBJECT_DIR)/iso_varying_string.o \
$(OBJECT_DIR)/input_output.o \
$(OBJECT_DIR)/kinds.o \
Expand Down Expand Up @@ -1991,6 +1992,8 @@ $(OBJECT_DIR)/node_routines.o : $(SOURCE_DIR)/node_routines.f90 \
$(OBJECT_DIR)/trees.o \
$(OBJECT_DIR)/types.o

$(OBJECT_DIR)/opencmiss.mod : $(OBJECT_DIR)/opencmiss.o

$(OBJECT_DIR)/opencmiss.o : $(SOURCE_DIR)/opencmiss.f90 \
$(OBJECT_DIR)/analytic_analysis_routines.o \
$(OBJECT_DIR)/base_routines.o \
Expand Down

0 comments on commit bf8fb30

Please sign in to comment.