From bf3c4c99d136694962672fe51a8afa0c75e994d4 Mon Sep 17 00:00:00 2001 From: Sylvain Pion Date: Thu, 20 Aug 2009 13:27:34 +0000 Subject: [PATCH] Remove obsolete makefiles, or cmake-generated makefiles that should not be under SVN. --- .../examples/Alpha_shapes_2/Makefile | 80 ------------------- Jet_fitting_3/examples/Jet_fitting_3/makefile | 54 ------------- Kernel_23/examples/Kernel_23/makefile | 46 ----------- Mesh_2/examples/Mesh_2/makefile | 68 ---------------- Ridges_3/examples/Ridges_3/makefile | 56 ------------- .../examples/Stream_lines_2/makefile | 56 ------------- .../examples/Subdivision_method_3/makefile | 66 --------------- 7 files changed, 426 deletions(-) delete mode 100644 Alpha_shapes_2/examples/Alpha_shapes_2/Makefile delete mode 100644 Jet_fitting_3/examples/Jet_fitting_3/makefile delete mode 100644 Kernel_23/examples/Kernel_23/makefile delete mode 100644 Mesh_2/examples/Mesh_2/makefile delete mode 100644 Ridges_3/examples/Ridges_3/makefile delete mode 100644 Stream_lines_2/examples/Stream_lines_2/makefile delete mode 100644 Subdivision_method_3/examples/Subdivision_method_3/makefile diff --git a/Alpha_shapes_2/examples/Alpha_shapes_2/Makefile b/Alpha_shapes_2/examples/Alpha_shapes_2/Makefile deleted file mode 100644 index 091185f72bd..00000000000 --- a/Alpha_shapes_2/examples/Alpha_shapes_2/Makefile +++ /dev/null @@ -1,80 +0,0 @@ -# This is the makefile for compiling a CGAL application. - -#---------------------------------------------------------------------# -# include platform specific settings -#---------------------------------------------------------------------# -# Choose the right include file from the /make directory. - -#CGAL_MAKEFILE =$(UTIL)/CGAL/CGAL-2.3/make/makefile_sparc_SunOS-5.6_g++-2.95.3_LEDA - -# for cygwin -#\prisme\CGAL\CGAL-2.1-I-30\make\makefile_i686_CYGWINNT-4.0-20.1_CL.EXE-12.00.8168 - -# for others -#$(UTIL)/CGAL-I/make/makefile_sparc_SunOS-5.6_eg++-egcs-2.91.66_LEDA -#makefile_sparc_SunOS-5.6_eg++-egcs-2.91.66_LEDA -#makefile_sparc_SunOS-5.6_g++-2.95.1_LEDA -#makefile_sparc_SunOS-5.6_g++-2.95.2_LEDA -#makefile_i686_Linux-2.2.7_eg++-egcs-2.91.66_LEDA -#makefile_i686_Linux-2.2.7_g++-2.95.1_LEDA -#makefile_i686_Linux-2.2.10_g++-2.95.2_LEDA - -include $(CGAL_MAKEFILE) - -# ---------------------------------------------------------------------# -# compiler flags -#----------------------------------------------------------------------# -# rajouter CGAL_LOCAL_CXXFLAGS si on veut les packages de Local - -CXXFLAGS = -I ../../include \ - $(CGAL_CXXFLAGS) -g - - -#-I ../../include \ -# -I../../../Triangulation_2/include \ -# $(CGAL_CXXFLAGS) - - - -# -I$(HOME)/Cgal-I/For_Submission/Alpha_shapes_2/include \ -# for cygwin -#'-Iz:\Cgal-2.0\To_submit\Alpha_shapes_2\include' \ - -# for others -#-I$(HOME)/Cgal-2.0/To_submit/Alpha_shapes_2/include \ -#-mcpu=ultrasparc -mtune=ultrasparc -Wall -W -O2 -DDEBUG -#-B /u/alcor/0/prisme_util/Binutils/SunOS/bin/ -#---------------------------------------------------------------------# -# linker flags -#---------------------------------------------------------------------# - -LIBPATH = $(CGAL_LIBPATH) - -LDFLAGS = $(CGAL_LDFLAGS) - -#---------------------------------------------------------------------# -# target entries -#---------------------------------------------------------------------# - -all: alpha_shapes_2$(EXE_EXT) weighted_alpha_shapes_2$(EXE_EXT) - -alpha_shapes_2$(EXE_EXT): alpha_shapes_2$(OBJ_EXT) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)alpha_shapes_2 alpha_shapes_2$(OBJ_EXT) $(LDFLAGS) - -weighted_alpha_shapes_2$(EXE_EXT): weighted_alpha_shapes_2$(OBJ_EXT) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)weighted_alpha_shapes_2 weighted_alpha_shapes_2$(OBJ_EXT) $(LDFLAGS) - -clean: - \rm -f *.o *.obj *.exe \ - alpha_shapes_2$(EXE_EXT) weighted_alpha_shapes_2$(EXE_EXT) \ - core - -#---------------------------------------------------------------------# -# suffix rules -#---------------------------------------------------------------------# - -.cpp$(OBJ_EXT): - $(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $< - - - diff --git a/Jet_fitting_3/examples/Jet_fitting_3/makefile b/Jet_fitting_3/examples/Jet_fitting_3/makefile deleted file mode 100644 index e5f05565e2c..00000000000 --- a/Jet_fitting_3/examples/Jet_fitting_3/makefile +++ /dev/null @@ -1,54 +0,0 @@ -# Created by the script cgal_create_makefile -# This is the makefile for compiling a CGAL application. - -#---------------------------------------------------------------------# -# include platform specific settings -#---------------------------------------------------------------------# -# Choose the right include file from the /make directory. -# CGAL_MAKEFILE = ENTER_YOUR_INCLUDE_MAKEFILE_HERE -include $(CGAL_MAKEFILE) - -#---------------------------------------------------------------------# -# compiler flags -#---------------------------------------------------------------------# -CXXFLAGS = -I../../include \ - $(CGAL_CXXFLAGS) \ - $(LONG_NAME_PROBLEM_CXXFLAGS) - -#---------------------------------------------------------------------# -# linker flags -#---------------------------------------------------------------------# -LIBPATH = \ - $(CGAL_LIBPATH) - -LDFLAGS = \ - $(LONG_NAME_PROBLEM_LDFLAGS) \ - $(CGAL_LDFLAGS) - -#---------------------------------------------------------------------# - -# target entries -#---------------------------------------------------------------------# - -all: \ - Mesh_estimation$(EXE_EXT) Single_estimation$(EXE_EXT) - -MESH_ESTIMATION_OBJS=PolyhedralSurf$(OBJ_EXT) Mesh_estimation$(OBJ_EXT) -Mesh_estimation$(EXE_EXT): $(MESH_ESTIMATION_OBJS) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)Mesh_estimation $(MESH_ESTIMATION_OBJS) \ - $(LDFLAGS) - -Single_estimation$(EXE_EXT): Single_estimation$(OBJ_EXT) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)Single_estimation Single_estimation$(OBJ_EXT) \ - $(LDFLAGS) - -clean: \ - Mesh_estimation.clean Single_estimation.clean PolyhedralSurf.clean - -#---------------------------------------------------------------------# -# suffix rules -#---------------------------------------------------------------------# - -.cpp$(OBJ_EXT): - $(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $< - diff --git a/Kernel_23/examples/Kernel_23/makefile b/Kernel_23/examples/Kernel_23/makefile deleted file mode 100644 index 9681448d4d5..00000000000 --- a/Kernel_23/examples/Kernel_23/makefile +++ /dev/null @@ -1,46 +0,0 @@ - - -# CGAL_MAKEFILE = ENTER_YOUR_INCLUDE_MAKEFILE_HERE -include $(CGAL_MAKEFILE) - -#---------------------------------------------------------------------# -# compiler flags -#---------------------------------------------------------------------# -# -DCGAL_CONCEPT_ARCHETYPE_ALLOW_COMPARISONS - -CXXFLAGS = \ - -I../../include \ - $(CGAL_CXXFLAGS) - -#---------------------------------------------------------------------# -# linker flags -#---------------------------------------------------------------------# - -LIBPATH = \ - $(CGAL_LIBPATH) - -LDFLAGS = \ - $(CGAL_LDFLAGS) - -#---------------------------------------------------------------------# -# target entries -#---------------------------------------------------------------------# - -all: \ -MyKernel - - - -MyKernel$(EXE_EXT): MyKernel$(OBJ_EXT) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)MyKernel MyKernel$(OBJ_EXT) $(LDFLAGS) - -clean: \ -MyKernel.clean - -#---------------------------------------------------------------------# -# suffix rules -#---------------------------------------------------------------------# - -.cpp$(OBJ_EXT): - $(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $< - diff --git a/Mesh_2/examples/Mesh_2/makefile b/Mesh_2/examples/Mesh_2/makefile deleted file mode 100644 index b5d91b4d37f..00000000000 --- a/Mesh_2/examples/Mesh_2/makefile +++ /dev/null @@ -1,68 +0,0 @@ -# Created by the script cgal_create_makefile -# This is the makefile for compiling a CGAL application. - -#---------------------------------------------------------------------# -# include platform specific settings -#---------------------------------------------------------------------# -# Choose the right include file from the /make directory. - -# CGAL_MAKEFILE = ENTER_YOUR_INCLUDE_MAKEFILE_HERE -include $(CGAL_MAKEFILE) - -#---------------------------------------------------------------------# -# compiler flags -#---------------------------------------------------------------------# - -CXXFLAGS = \ - -I../../include \ - -I../../../Triangulation_2/include \ - $(CGAL_CXXFLAGS) \ - $(LONG_NAME_PROBLEM_CXXFLAGS) \ - $(OTHER_CXXFLAGS) - -#---------------------------------------------------------------------# -# linker flags -#---------------------------------------------------------------------# - -LIBPATH = \ - $(CGAL_LIBPATH) - -LDFLAGS = \ - $(LONG_NAME_PROBLEM_LDFLAGS) \ - $(CGAL_LDFLAGS) - -#---------------------------------------------------------------------# -# target entries -#---------------------------------------------------------------------# - -all: \ - conforming$(EXE_EXT) \ - mesh_class$(EXE_EXT) \ - mesh_global$(EXE_EXT) \ - mesh_with_seeds$(EXE_EXT) - -conforming$(EXE_EXT): conforming$(OBJ_EXT) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)conforming conforming$(OBJ_EXT) $(LDFLAGS) - -mesh_class$(EXE_EXT): mesh_class$(OBJ_EXT) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)mesh_class mesh_class$(OBJ_EXT) $(LDFLAGS) - -mesh_global$(EXE_EXT): mesh_global$(OBJ_EXT) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)mesh_global mesh_global$(OBJ_EXT) $(LDFLAGS) - -mesh_with_seeds$(EXE_EXT): mesh_with_seeds$(OBJ_EXT) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)mesh_with_seeds mesh_with_seeds$(OBJ_EXT) $(LDFLAGS) - -clean: \ - conforming.clean \ - mesh_class.clean \ - mesh_global.clean \ - mesh_with_seeds.clean - -#---------------------------------------------------------------------# -# suffix rules -#---------------------------------------------------------------------# - -.cpp$(OBJ_EXT): - $(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $< - diff --git a/Ridges_3/examples/Ridges_3/makefile b/Ridges_3/examples/Ridges_3/makefile deleted file mode 100644 index d6c09742661..00000000000 --- a/Ridges_3/examples/Ridges_3/makefile +++ /dev/null @@ -1,56 +0,0 @@ -# Created by the script cgal_create_makefile -# This is the makefile for compiling a CGAL application. - -#---------------------------------------------------------------------# -# include platform specific settings -#---------------------------------------------------------------------# -# Choose the right include file from the /make directory. -# CGAL_MAKEFILE = ENTER_YOUR_INCLUDE_MAKEFILE_HERE -include $(CGAL_MAKEFILE) - -#---------------------------------------------------------------------# -# compiler flags -#---------------------------------------------------------------------# - -CXXFLAGS = \ - -I../../include \ - $(TESTSUITE_CXXFLAGS) \ - $(EXTRA_FLAGS) \ - $(CGAL_CXXFLAGS) \ - $(LONG_NAME_PROBLEM_CXXFLAGS) - -#---------------------------------------------------------------------# -# linker flags -#---------------------------------------------------------------------# - -LIBPATH = \ - $(TESTSUITE_LIBPATH) \ - $(CGAL_LIBPATH) - -LDFLAGS = \ - $(TESTSUITE_LDFLAGS) \ - $(LONG_NAME_PROBLEM_LDFLAGS) \ - $(CGAL_LDFLAGS) - -#---------------------------------------------------------------------# -# target entries -#---------------------------------------------------------------------# - -all: \ - Compute_Ridges_Umbilics$(EXE_EXT) - -COMPUTE_RIDGES_UMBILICS_OBJS=PolyhedralSurf$(OBJ_EXT) Compute_Ridges_Umbilics$(OBJ_EXT) -Compute_Ridges_Umbilics$(EXE_EXT): $(COMPUTE_RIDGES_UMBILICS_OBJS) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)Compute_Ridges_Umbilics $(COMPUTE_RIDGES_UMBILICS_OBJS) \ - $(LDFLAGS) - -clean: \ - Compute_Ridges_Umbilics.clean PolyhedralSurf.clean - -#---------------------------------------------------------------------# -# suffix rules -#---------------------------------------------------------------------# - -.cpp$(OBJ_EXT): - $(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $< - diff --git a/Stream_lines_2/examples/Stream_lines_2/makefile b/Stream_lines_2/examples/Stream_lines_2/makefile deleted file mode 100644 index 85d3db9019a..00000000000 --- a/Stream_lines_2/examples/Stream_lines_2/makefile +++ /dev/null @@ -1,56 +0,0 @@ -# Created by the script cgal_create_makefile -# This is the makefile for compiling a CGAL application. - -#---------------------------------------------------------------------# -# include platform specific settings -#---------------------------------------------------------------------# -# Choose the right include file from the /make directory. - -# CGAL_MAKEFILE = ENTER_YOUR_INCLUDE_MAKEFILE_HERE -include $(CGAL_MAKEFILE) - -#---------------------------------------------------------------------# -# compiler flags -#---------------------------------------------------------------------# - -CXXFLAGS = \ - -I../../include \ - $(CGAL_CXXFLAGS) \ - $(LONG_NAME_PROBLEM_CXXFLAGS) - -#---------------------------------------------------------------------# -# linker flags -#---------------------------------------------------------------------# - -LIBPATH = \ - $(CGAL_LIBPATH) - -LDFLAGS = \ - $(LONG_NAME_PROBLEM_LDFLAGS) \ - $(CGAL_LDFLAGS) - -#---------------------------------------------------------------------# -# target entries -#---------------------------------------------------------------------# - -all: \ - stl_regular_field$(EXE_EXT) \ - stl_triangular_field$(EXE_EXT) - -stl_regular_field$(EXE_EXT): stl_regular_field$(OBJ_EXT) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)stl_regular_field stl_regular_field$(OBJ_EXT) $(LDFLAGS) - -stl_triangular_field$(EXE_EXT): stl_triangular_field$(OBJ_EXT) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)stl_triangular_field stl_triangular_field$(OBJ_EXT) $(LDFLAGS) - -clean: \ - stl_regular_field.clean \ - stl_triangular_field.clean - -#---------------------------------------------------------------------# -# suffix rules -#---------------------------------------------------------------------# - -.cpp$(OBJ_EXT): - $(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $< - diff --git a/Subdivision_method_3/examples/Subdivision_method_3/makefile b/Subdivision_method_3/examples/Subdivision_method_3/makefile deleted file mode 100644 index 1b404b51d98..00000000000 --- a/Subdivision_method_3/examples/Subdivision_method_3/makefile +++ /dev/null @@ -1,66 +0,0 @@ -# Created by the script cgal_create_makefile -# This is the makefile for compiling a CGAL application. - -#---------------------------------------------------------------------# -# include platform specific settings -#---------------------------------------------------------------------# -# Choose the right include file from the /make directory. - -# CGAL_MAKEFILE = ENTER_YOUR_INCLUDE_MAKEFILE_HERE -include $(CGAL_MAKEFILE) - -#---------------------------------------------------------------------# -# compiler flags -#---------------------------------------------------------------------# - -CXXFLAGS = \ - -I../../include \ - $(CGAL_CXXFLAGS) \ - $(LONG_NAME_PROBLEM_CXXFLAGS) - -#---------------------------------------------------------------------# -# linker flags -#---------------------------------------------------------------------# - -LIBPATH = \ - $(CGAL_LIBPATH) - -LDFLAGS = \ - $(LONG_NAME_PROBLEM_LDFLAGS) \ - $(CGAL_LDFLAGS) - -#---------------------------------------------------------------------# -# target entries -#---------------------------------------------------------------------# - -all: \ - CatmullClark_subdivision$(EXE_EXT) \ - Customized_subdivision$(EXE_EXT) \ - DooSabin_subdivision$(EXE_EXT) \ - Loop_subdivision$(EXE_EXT) - -CatmullClark_subdivision$(EXE_EXT): CatmullClark_subdivision$(OBJ_EXT) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)CatmullClark_subdivision CatmullClark_subdivision$(OBJ_EXT) $(LDFLAGS) - -Customized_subdivision$(EXE_EXT): Customized_subdivision$(OBJ_EXT) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)Customized_subdivision Customized_subdivision$(OBJ_EXT) $(LDFLAGS) - -DooSabin_subdivision$(EXE_EXT): DooSabin_subdivision$(OBJ_EXT) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)DooSabin_subdivision DooSabin_subdivision$(OBJ_EXT) $(LDFLAGS) - -Loop_subdivision$(EXE_EXT): Loop_subdivision$(OBJ_EXT) - $(CGAL_CXX) $(LIBPATH) $(EXE_OPT)Loop_subdivision Loop_subdivision$(OBJ_EXT) $(LDFLAGS) - -clean: \ - CatmullClark_subdivision.clean \ - Customized_subdivision.clean \ - DooSabin_subdivision.clean \ - Loop_subdivision.clean - -#---------------------------------------------------------------------# -# suffix rules -#---------------------------------------------------------------------# - -.cpp$(OBJ_EXT): - $(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $< -