diff --git a/Common/DefaultOptions.h b/Common/DefaultOptions.h index d51c4463fa51e62847793bebe80a3281b4b22932..d111d8a92058b97a26b35963cf151ecdcaf112c7 100644 --- a/Common/DefaultOptions.h +++ b/Common/DefaultOptions.h @@ -217,7 +217,7 @@ StringXNumber MeshOptions_Number[] = { StringXNumber PostProcessingOptions_Number[] = { { F|O, "Scales" , opt_post_scales , 1. }, { F|O, "Link" , opt_post_link , 0. }, - { F|O, "Smoothing" , opt_post_smooth , 1. }, + { F|O, "Smoothing" , opt_post_smooth , 0. }, { F|O, "AnimationDelay" , opt_post_anim_delay , 0.25 }, { F, "NbViews" , opt_post_nb_views , 0. }, { 0, NULL , NULL , 0. } diff --git a/Makefile b/Makefile index 3dd0dbd2db57c460f5c6f3e2e10eb41d3c1b2deb..7b493d2a42c21c336ffc95d4b450d612d6f6c288 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.75 2001-03-06 04:38:56 remacle Exp $ +# $Id: Makefile,v 1.76 2001-03-06 16:40:18 geuzaine Exp $ # ---------------------------------------------------------------------- # Makefile for Gmsh # ---------------------------------------------------------------------- @@ -365,6 +365,16 @@ fltk_compile_little_endian: "GUI_INCLUDE=$(FLTK_INC)" \ ); done +fltk_compile_big_endian: + @for i in $(GMSH_FLTK_DIR); do (cd $$i && $(MAKE) \ + "CC=$(CC)" \ + "C_FLAGS=-O3" \ + "OS_FLAGS=" \ + "VERSION_FLAGS=-D_FLTK" \ + "GL_INCLUDE=$(OPENGL_INC)" \ + "GUI_INCLUDE=$(FLTK_INC)" \ + ); done + fltk_compile_little_endian_2952: @for i in $(GMSH_FLTK_DIR); do (cd $$i && $(MAKE) \ "CC=$(HOME)/gcc-2.95.2/bin/g++" \ @@ -418,11 +428,12 @@ fltk_link_mesa: fltk_link_opengl: $(CC) -o $(GMSH_BIN_DIR)/gmsh $(GMSH_FLTK_LIB) $(OPENGL_LIB) \ $(FLTK_LIB) -lm -ldl - fltk_link_sgi: CC -O2 -n32 -o $(GMSH_BIN_DIR)/gmsh $(GMSH_FLTK_LIB)\ $(FLTK_LIB) $(OPENGL_LIB) -lm -ldl - +fltk_link_sun: + $(CC) -o $(GMSH_BIN_DIR)/gmsh $(GMSH_FLTK_LIB) $(MESA_LIB) \ + $(FLTK_LIB) -lXext -lsocket -lnsl -lm fltk_link_mesa_2952: $(HOME)/gcc-2.95.2/bin/g++ -o $(GMSH_BIN_DIR)/gmsh $(GMSH_FLTK_LIB) $(MESA_LIB) \ $(FLTK_LIB) -lm -ldl