* mesh/Makefile.am ($(srcdir)/%-pinv-curv.off)
($(srcdir)/%-max-curv.off):
Disable these rules.
---
milena/ChangeLog | 8 ++++++++
milena/mesh/Makefile.am | 14 ++++++++++----
2 files changed, 18 insertions(+), 4 deletions(-)
diff --git a/milena/ChangeLog b/milena/ChangeLog
index b863fea..69ab563 100644
--- a/milena/ChangeLog
+++ b/milena/ChangeLog
@@ -1,5 +1,13 @@
2009-05-14 Roland Levillain <roland(a)lrde.epita.fr>
+ Prevent the regeneration of computed meshes.
+
+ * mesh/Makefile.am ($(srcdir)/%-pinv-curv.off)
+ ($(srcdir)/%-max-curv.off):
+ Disable these rules.
+
+2009-05-14 Roland Levillain <roland(a)lrde.epita.fr>
+
Small adaptations of Milena to fix Swilena.
* mln/core/concept/image.hh (mln::Image<E>::Image): Add concept
diff --git a/milena/mesh/Makefile.am b/milena/mesh/Makefile.am
index 4ea4a0a..679e55a 100644
--- a/milena/mesh/Makefile.am
+++ b/milena/mesh/Makefile.am
@@ -29,8 +29,11 @@ mesh_pinv_curv: $(top_srcdir)/milena/apps/statues/mesh-pinv-curv.cc
cd $(top_builddir)/milena/apps/statues/mesh-pinv-curv && \
$(MAKE) $(AM_MAKEFLAGS) mesh_pinv_curv
-$(srcdir)/%-pinv-curv.off: %.off $(mesh_pinv_curv)
- $(mesh_pinv_curv) $< $@
+# FIXME: *-pinv-curv.off files should not be regenerated
+# automatically, because it really takes time. Find a way to prevent
+# Make to regen them without disabling this rule.
+## $(srcdir)/%-pinv-curv.off: %.off $(mesh_pinv_curv)
+## $(mesh_pinv_curv) $< $@
# pinv_curv = $(meshes:.off=-pinv-curv.off)
pinv_curv = $(patsubst %.off,$(srcdir)/%-pinv-curv.off,$(meshes))
@@ -45,8 +48,11 @@ mesh_max_curv: $(top_srcdir)/milena/apps/statues/mesh-max-curv.cc
cd $(top_builddir)/milena/apps/statues/mesh-max-curv && \
$(MAKE) $(AM_MAKEFLAGS) mesh_max_curv
-$(srcdir)/%-max-curv.off: %.off $(mesh_max_curv)
- $(mesh_max_curv) $< $@
+# FIXME: *-max-curv.off files should not be regenerated
+# automatically, because it really takes time. Find a way to prevent
+# Make to regen them without disabling this rule.
+## $(srcdir)/%-max-curv.off: %.off $(mesh_max_curv)
+## $(mesh_max_curv) $< $@
#max_curv = $(meshes:.off=-max-curv.off)
max_curv = $(patsubst %.off,$(srcdir)/%-max-curv.off,$(meshes))
--
1.6.1.2
Show replies by date