Remove unused makefiles.

This commit is contained in:
Sylvain Pion 2009-08-20 14:08:25 +00:00
parent 5088202749
commit 34db2978c4
4 changed files with 0 additions and 69 deletions

1
.gitattributes vendored
View File

@ -1113,7 +1113,6 @@ CGAL_ipelets/include/CGAL/CGAL_Ipelet_base.h -text
CGAL_ipelets/include/CGAL/grabbers.h -text
CGAL_ipelets/package_info/CGAL_ipelets/maintainer -text
CGALimageIO/src/CGALimageIO/CMakeLists.txt -text
CGALimageIO/src/CGALimageIO/local_makefile -text
Circular_kernel_2/Benchmarks/parser/Report.pdf -text svneol=unset#application/pdf
Circular_kernel_2/Benchmarks/readme.doc -text svneol=unset#application/msword
Circular_kernel_2/Benchmarks/readme.pdf -text svneol=unset#application/pdf

View File

@ -1,2 +1 @@
local_makefile
demo

View File

@ -1,5 +0,0 @@
OTHER_CXXFLAGS=-I../../../Installation/include
all:
$(MAKE) -f makefile -I../../../Installation/src/CGAL/ OTHER_CXXFLAGS=$(OTHER_CXXFLAGS)

View File

@ -1,62 +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
#---------------------------------------------------------------------#
CUSTOM_CXXFLAGS := -O2 -DCGAL_NO_ASSERTIONS -DCGAL_NO_PRECONDITIONS -DCGAL_NO_POSTCONDITIONS
CXXFLAGS = \
$(TESTSUITE_CXXFLAGS) \
$(EXTRA_FLAGS) \
-Iinclude \
$(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: \
chull_dd-runtime \
delaunay_dd-runtime
chull_dd-runtime$(EXE_EXT): chull_dd-runtime$(OBJ_EXT)
$(CGAL_CXX) $(LIBPATH) $(EXE_OPT)chull_dd-runtime chull_dd-runtime$(OBJ_EXT) $(LDFLAGS)
delaunay_dd-runtime$(EXE_EXT): delaunay_dd-runtime$(OBJ_EXT)
$(CGAL_CXX) $(LIBPATH) $(EXE_OPT)delaunay_dd-runtime delaunay_dd-runtime$(OBJ_EXT) $(LDFLAGS)
clean: \
chull_dd-runtime.clean \
delaunay_dd-runtime.clean
#---------------------------------------------------------------------#
# suffix rules
#---------------------------------------------------------------------#
.cpp$(OBJ_EXT):
$(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $<