Remove obsolete makefiles, or cmake-generated makefiles that should not be under SVN.

This commit is contained in:
Sylvain Pion 2009-08-20 13:27:34 +00:00
parent 322065dcd2
commit bf3c4c99d1
7 changed files with 0 additions and 426 deletions

View File

@ -1,80 +0,0 @@
# This is the makefile for compiling a CGAL application.
#---------------------------------------------------------------------#
# include platform specific settings
#---------------------------------------------------------------------#
# Choose the right include file from the <cgalroot>/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) $<

View File

@ -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 <cgalroot>/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) $<

View File

@ -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) $<

View File

@ -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 <cgalroot>/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) $<

View File

@ -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 <cgalroot>/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) $<

View File

@ -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 <cgalroot>/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) $<

View File

@ -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 <cgalroot>/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) $<